https://github.com/anupkumarsharma/angular-2-seed
https://github.com/anupkumarsharma/angular-2-seed
angular-2 angular2 gulp seed typescript webpack
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anupkumarsharma/angular-2-seed
- Owner: anupkumarsharma
- License: apache-2.0
- Created: 2017-01-30T05:51:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-02T12:35:50.000Z (over 9 years ago)
- Last Synced: 2025-03-08T21:33:39.695Z (over 1 year ago)
- Topics: angular-2, angular2, gulp, seed, typescript, webpack
- Language: JavaScript
- Size: 123 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Angular-2-Seed
# Introduction
Seed project for Angular2 development
Features:
- Uses Webpack,latest version for development and production build. Features like bundling and code splitting implemented.
- Uses Gulp, as task runner. Developers can benefit from large plugin eco-system of gulp, specially for deployment
- Typescript is extensively used including gulp tasks, itself is in typescript.
- Webpack development server, includes live html test reporting and coverage
Useful commands
```bash
$ git clone https://github.com/anupkumarsharma/Angular-2-Seed.git
$ cd angular-seed
# install the project's dependencies
$ npm install
# Runs the application in live reload mode. watches for spec files and reports on console as live html- http://localhost:5060
$ gulp dev
# Builds the application for production. Uses TSLint for linting
$ gulp build --define production
# Tests the application and outputs reports in console and coverage. Uses remap-istanbul to remap.
$ gulp test
# Linting
$ gulp lint
```