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

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

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

android - How to create dynamically Fragment pager adapter -