Welcome to Angular Seed Project.
This is boilerplate required to quickstart a project.
- Take latest code from Github and clone
https://github.com/nbpro/angular-cli-boilerplate.git. - Install angular CLI & node js.
- Run
npm install - For local Development Run
ng serve. Navigate tohttp://localhost:5626/.The app will automatically reload if you change any of the source files - Default port is 5626. you can change the port by command
ng serve --port <port number>
ng buildinside project directory will build the application.- A build folder will be generated inside project root directory named
dist. - Install http-server locally
npm install http-server - Check locally by command
http-server -a localhost -p 4200 -c-1 ./dist/
*This guide has been documented by Neeraj Kumar <nbneeraj8@gmail.com>