https://github.com/willyelm/angular2-es6-seed
Seed project for angular2 apps using ES6
https://github.com/willyelm/angular2-es6-seed
angular2-apps angular2-es6-seed seed
Last synced: 14 days ago
JSON representation
Seed project for angular2 apps using ES6
- Host: GitHub
- URL: https://github.com/willyelm/angular2-es6-seed
- Owner: willyelm
- License: mit
- Created: 2016-07-19T01:32:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-23T15:58:42.000Z (over 9 years ago)
- Last Synced: 2024-12-31T19:45:37.304Z (about 1 year ago)
- Topics: angular2-apps, angular2-es6-seed, seed
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular2-es6-seed
[](https://travis-ci.org/willyelm/angular-es6-seed)
[](http://standardjs.com/)
[](https://github.com/willyelm/angular-es6-seed)
Seed project for angular2 apps using ES6 and webpack bundler.
This project was tested with the latest version of nodeJS and npm, please make sure you have atleast [node.js](https://nodejs.org/) 5+ and [NPM](https://www.npmjs.com/) 3+ installed.
## Usage & Develop
- Clone or fork this repository
- run `npm install` to install dependencies
- run `npm start` to fire up dev server
- open browser to [`http://localhost:3000`](http://localhost:3000)
## Build
to create a ready production distribution package of the project please run:
```
npm run build
```
after running build the generated files will be available at `/dist`
## Testing
This seed is has protractor and karma for end to end testing and unit testing respectively.
### Unit Testing
make sure your tests are named with a `-test.js` suffix then. to run karma simply run:
```
npm test
```
### End to end Testing
to start protractor tests please run:
```
npm run protractor
```