This project is an exercise to
You will need git to clone the repository. You can get git from http://git-scm.com/.
We also use a number of node.js tools to initialize and test material-start. You must have node.js and its package manager (npm) installed. You can get them from http://nodejs.org/.
We have two kinds of dependencies in this project: tools and AngularJS framework code. The tools help us manage and test the application.
- We get the tools we depend upon via
npm
, the node package manager. - We get the AngularJS code via
bower
, a client-side code package manager.
We have preconfigured npm
to automatically run bower
so we can simply do:
npm install
cd .ui/app; live-server;
The project comes pre-configured with a local development web server. It is a node.js tool called http-server. You can install http-server globally:
npm install -g live-server
Then you can start your own development web server to serve static files from a folder by running:
cd app
live-server
For more information on AngularJS please check out http://angularjs.org/