Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cironunes/ngzen
CLI tool for a faster Angular worflow
https://github.com/cironunes/ngzen
Last synced: 4 months ago
JSON representation
CLI tool for a faster Angular worflow
- Host: GitHub
- URL: https://github.com/cironunes/ngzen
- Owner: cironunes
- Created: 2015-06-06T14:21:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-03T17:54:17.000Z (over 9 years ago)
- Last Synced: 2024-04-15T03:09:15.807Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 218 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ngzen
> CLI tool for a faster Angular worflowZen creates Angular files for you enforcing the [best practices](https://github.com/johnpapa/angular-styleguide).
## How to install
`$ npm install -g ngzen`
## API
- **module [module_name]:**
Create a module folder and the module registration file.`
$ zen module auth
`
```
- auth
- auth.module.js
```
- **controller [controller_name] [module_name]:**
`
$ zen controller auth auth
`
```
- auth
- auth.controller.js
```
- **service [service_name] [module_name]:**`
$ zen service auth auth
`
```
- auth
- auth.service.js
```
- **directive [directive_name] [module_name]:**
`
$ zen directive auth auth
`
```
- auth
- auth.directive.js
```- **constant [constant_name] [module_name]:**
`
$ zen constant auth auth
````
- auth
- auth.constant.js
```