ngf, ng-fullstack, generator-ng-fullstack
npm install ngf

Simple alias for generator-ng-fullstack.
shell
$ npm i -g ngf
`
$3
The idea is to have something similar to angular-cli - but with ng-fullstack in mind.
$3
Because typing yo ng-fullstack:component people_cmp --feature person all the time sucks.
$3
ngf simply passes the info down to ng-fullstack, there's no black magic involved.
$3
Answer some questions by runing:
`shell
$ ngf
runs
yo ng-fullstack behind the hood
`
Create components, services, models and many others, by running:
`shell
$ ngf g cmp people_cmp --ft person
# creates a new component called people_cmp
# it's the same as running: yo ng-fullstack:component people_cmp --feature person
# ngf: is the responsible to talk with ng-fullstack
# g: means generate
# cmp: is the type of file that's being created - a component
# people_cmp: is the name given to the file/component
# --ft: means the --feature, which is the context to the created file
``