This generator are using Angular1.5, Angular Component Router, Bootstrap v4(alpha) and Express on Node.js. Instead of MongoDB, it will use the lighter TingoDB.
Angular we have emphasized the development life cycle. It supports the next thing for that.
- Unit Test
- End-to-End Test
- Documentation
- Coverage
- Metric
Install: npm install -g generator-angular-eggs
Make a new directory and cd into it:
mkdir [app-name] && cd $_
This [app-name] is used as ng-app="[app-name]"
Run yo angular-eggs:
yo angular-eggs
Available generators:
- yo angular-eggs:components [name] [name(option)]
- yo angular-eggs:service [name]
- yo angular-eggs:resource [name]
- yo angular-eggs:server [name]
yo angular-eggs:components [name] command creates a file as follows:
app/components/[name]/[name].html
app/components/[name]/[name].js
test/components/[name]/[name].spec.jsWhen name is appName:
app/components/appname/appname.html
app/components/appname/appname.js
test/components/appname/appname.spec.jsComponent name is appName. So CustomTag name is app-name
Case yo angular2-eggs:components appComp
make file
app/components/appcomp/appcomp.js
app/components/appcomp/appcomp.html
test/components/appcomp/appcomp.spec.jsCase yo angular2-eggs:components appComp subComp
make file
app/components/appcomp/appcomp.subcomp.ts
app/components/appcomp/appcomp.subcomp.html
test/components/appcomp/appcomp.subcomp.spec.ts- npm start
- npm run serve:dist
- npm run build
- npm test
- npm run test:watch
- npm run test:coverage
- npm run e2e
- npm run doc
- npm run metric
- npm run metric:test
