Minimum starter kit for angular2
git clone --depth 1 https://github.com/mitsuruog/angular2-minimum-starter.git
cd angular2-minimum-starter
npm install
npm start
npm test
https://angular2-minimum-starter.herokuapp.com/
Base on official 5min quick start.
- Minimun Angular2 dependencies
- Minimun configure TypeScript
- Minimun configure Visual Studio Code
- Minimun development HTTP Server
- Minimun Javascript intellisense via typings
- Minimun test seed and coverage
- Module loader via SystemJS
- Easy to deploy on Heroku
- Bootstrap template
npm start
to fire up dev server.npm test
to run unit test.npm run coverage
to build a HTML coverage report.
When deploy to Heroku, please carefully read important notice as below.
Since Heroku usually don’t install all devDependencies
in production builds. You should install all devDependencies
, you disable NPM_CONFIG_PRODUCTION
at Heroku settings on app.
heroku config:set NPM_CONFIG_PRODUCTION=false
MIT