Quickly start your angularJS project, develope with flexibility using dev command line tools and build a deploy version with source minification.
If you don't have, click here
npm -v and,
node -v you should see some version info in return.
run on any directory,
npm install -g gulp-cli node-gyp in case of mac or linux, you might need to mention "sudo"
(terminal for mac or linux) run the command,
git clone URL here URL is the http url you get from the repository page, Click here to clone
run the command,
npm install wait for it to be completed. It usually takes 5-10 minutes to complete. It will download all the dependencies, build the project and serve the build on browser.
File watching enabled (Development Mode)
gulp You should see the browser window opening address http://localhost:3000 (opens another port if unavailable).
If you want to serve the source without watching file changes (Source Testing Mode), run this,
gulp serveSource Build the source code into ./_build (Deployment Mode)
gulp build Warning: It will delete previous build !!!
Serve the ./_build/ without watching file changes (Build Testing Mode)
gulp serveBuild you should see the browser window opening address http://localhost:3000 (opens another port if unavailable).
Warning: It will delete previous build !!!
Please change your editor configuration like below before you start development
See the live demo here