https://github.com/pauloptimizely/g-generator
faster than yeoman generator
https://github.com/pauloptimizely/g-generator
Last synced: 4 months ago
JSON representation
faster than yeoman generator
- Host: GitHub
- URL: https://github.com/pauloptimizely/g-generator
- Owner: pauloptimizely
- Created: 2018-09-25T22:30:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T15:12:18.000Z (over 6 years ago)
- Last Synced: 2024-08-01T13:35:16.032Z (7 months ago)
- Language: JavaScript
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# G (aka Goman)
G (aka Goman) is a faster implemenation of yeoman.
```
sudo npm install -g goman
```cli usage
```
g [generator] [options]
```## Built-in generators
- [go-react](https://github.com/pauloptimizely/go-react)
- [go-react-oui](https://github.com/pauloptimizely/go-react-oui)## Creating a generator
Goman generators have `go-` prefix.
```
npm install -g go-your-new-generator
```than call
```
g your-new-generator
```The prefix can be changed by updating `~/.g/.g.config.json`
```js
{
"prefix": "go"
}
```