A simple Angular 2 starter project based on NPM, TypeScript, and Webpack. Used to show how to set up a project build workflow from scratch.
To work on this project:
- Run
npm installinside the project folder to download all the dependencies. This only needs to be done once. - Run
npm run serveto start a local development web server. You can now access the application at localhost:8080. - Run
npm run buildto bundle everything into thedistfolder for deployment; usenpm run build:prodfor a production build.
This example is part of the Angular 2 From The Ground Up course.