Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinedied/yippie
Extensible base generator and tools to chill out your Yeoman worflow
https://github.com/sinedied/yippie
generator template tools yeoman yippie
Last synced: 1 day ago
JSON representation
Extensible base generator and tools to chill out your Yeoman worflow
- Host: GitHub
- URL: https://github.com/sinedied/yippie
- Owner: sinedied
- License: mit
- Created: 2017-05-09T11:36:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T12:01:36.000Z (over 7 years ago)
- Last Synced: 2024-12-23T00:12:52.605Z (11 days ago)
- Topics: generator, template, tools, yeoman, yippie
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yippie
[![NPM version](https://img.shields.io/npm/v/yippie.svg)](https://www.npmjs.com/package/yippie)
[![Build status](https://img.shields.io/travis/sinedied/yippie/master.svg)](https://travis-ci.org/sinedied/yippie)
![Node version](https://img.shields.io/badge/node-%3E%3D6.0.0-brightgreen.svg)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)> Extensible base generator and tools to chill out your Yeoman worflow
## Usage
This generator extends [Yeoman](https://yeoman.io) base generator with all the boilerplate needed to create complex template-driven generators, and even more.
First install the dependency:
```bash
npm install --save yippie
```Then create a new generator like this:
```javascript
'use strict';
const Generator = require('yippie');
module.exports = Generator.make({ baseDir: __dirname });
```Add some template files in a `templates/` folder and you're done.
Congratulations on making your first Yeoman generator! :tada: