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
Post a Comment