DEPRECATED - Please use Yang-Schematics directly.
Yet Another Angular Generator
Install Yang-Cli using npm npm install -g yang-cli
.
Yang-Cli is just a wrapper around @angular/cli and yang-schematics.
It's main purpose is to avoid commands like ng g yang-schematics:xxx
and write those as yang xxx
Every cli parameters are passed 'as-is' to @angular/cli.
The first parameter is the Yang schematic short-name (ex: 'component' for 'yang-schematic:component').
If this name contains a slash ('/'), the cli assume you want to call a yang-schematic extension.
For example the command yang @corp/stuff
is a shortcut for ng g @corp/yang-schematic:stuff
.
Just read the yang-schematics docs ;-)
yang new my-awesome-project
Scaffold a brand new application.
This will create a new folder my-awesome-project
containing a fresh Angular application.
Just go inside this folder, install dependencies and run the project :
cd my-awesome-project
npm install
npm run start
Browse to http://localhost:4200.
That's all !
yang help
Print all available schematics.
MIT