javascript - Dashboard architecture - Angular JS + React JS + Node JS -


i starting on dashboard angular , react used on client side while node js used server side.

i going through architecture , found this:

view:

<html ng-app="my-dashboard">   <body>     <div class="some structuring thing">       <ng-include src="my-header.html"></ng-include>     </div>     <div class="some other thing">       <ng-include src="my-sidebar.html"></ng-include>     </div>      etc...    </body> </html> 

controllers:

<div ng-controller="my-header-text">   <p ng-bind="title">    etc... </div> <div ng-controller="my-header-login">   <p ng-click="login()">login</p>    etc...  </div> 

from these pieces of code, is possible pave way app similar this?

thanks.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -