Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hughsk/module-generator
The generator script I use for fresh modules
https://github.com/hughsk/module-generator
Last synced: 12 days ago
JSON representation
The generator script I use for fresh modules
- Host: GitHub
- URL: https://github.com/hughsk/module-generator
- Owner: hughsk
- License: other
- Created: 2014-06-06T22:10:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-06T22:40:56.000Z (over 10 years ago)
- Last Synced: 2024-10-17T16:37:05.883Z (22 days ago)
- Language: JavaScript
- Size: 108 KB
- Stars: 17
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# module-generator [![experimental](http://badges.github.io/stability-badges/dist/experimental.svg)](http://github.com/badges/stability-badges)
The generator script I use for fresh modules.
## Usage
Install with npm:
``` bash
npm install -g hughsk/module-generator
```Update your npm config:
``` bash
npm config set init.author.name "Your Name"
npm config set init.author.url "http://example.com"
npm config set init.author.email "[email protected]"
npm config set init.author.github "your-github-handle"
```Run the generator in a fresh folder and you're good to go!
``` bash
mkdir my-new-module
cd my-new-module
module-generator
npm init
```## License
MIT. See [LICENSE.md](http://github.com/hughsk/module-generator/blob/master/LICENSE.md) for details.