An open API service indexing awesome lists of open source software.

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

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"
}
```