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

https://github.com/generate/generate-gulp

Generate a node.js project with a gulpfile or starter gulp plugin.
https://github.com/generate/generate-gulp

Last synced: 14 days ago
JSON representation

Generate a node.js project with a gulpfile or starter gulp plugin.

Awesome Lists containing this project

README

          

# generate-gulp [![NPM version](https://badge.fury.io/js/generate-gulp.svg)](http://badge.fury.io/js/generate-gulp)

> Generate a node.js project with a starter gulp plugin or gulpfile.

## What is this?

This is a [generate] generator. Based on the same libraries as gulp, so it's faster, lighter, easier to use and author generators. Visit the [generate] project to learn more!

## Install globally with [npm](npmjs.org):

```bash
npm i -g generate-gulp
```

## Usage

To run the generator:

```js
$ generate gulp
```

### sub-generators

**gulp plugin**

Generate only a `index.js` file with the code necessary for starting a gulp plugin:

```js
$ generate gulp plugin
```

**gulp wrapped**

Same as the gulp plugin sub-generator, but the function is wrapped allowing you to pass an instance of gulp to the plugin:

```js
$ generate gulp wrapped
```

**gulpfile.js**

Generate only a `gulpfile.js`:

```js
$ generate gulp gulpfile
```

**dotfiles**

Generate only the dotfiles necessary for a starter project:

```js
$ generate gulp dotfiles
```

## Related projects
[generate](https://github.com/generate/generate): Project generator, for node.js.

## Running tests
Install dev dependencies:

```bash
npm i -d && npm test
```

## Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/generate-gulp/issues)

## Author

**Jon Schlinkert**

+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)

## License
Copyright (c) 2015 Jon Schlinkert
Released under the MIT license

***

_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on April 08, 2015._

[generate]: https://github.com/generate/generate