generator-angular-eggs
v2.3.7
Published
Angular 1.5, Angular Component Router, Bootstrap v4(alpha) and TingoDB(like MongoDB) with an Express server
Maintainers
Readme
Angular 1.5.0, Component Router, Bootstrap v4-alpha and TingoDB(like MongoDB) App Generator
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
Usage
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-eggsGenerators
Available generators:
- yo angular-eggs:components [name] [name(option)]
- yo angular-eggs:service [name]
- yo angular-eggs:resource [name]
- yo angular-eggs:server [name]
Notes
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
Components
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.tsTasks
- 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

