menu

How to run angular application

To run an angular application make sure that you have bower, gulp and npm installed globally.

After creating or downloading angular project inside that folder run following commands set of commands:

bower install

The above command will install all the bower dependencies, then run

npm install

npm install command will install all the node libraries

gulp serve

Read gulp.js and run the local server. To generate files for deployment use the following command

gulp build