https://github.com/killme2008/gen-node-module
the script to generate a node.js module skeleton
https://github.com/killme2008/gen-node-module
Last synced: over 1 year ago
JSON representation
the script to generate a node.js module skeleton
- Host: GitHub
- URL: https://github.com/killme2008/gen-node-module
- Owner: killme2008
- Created: 2011-06-01T10:33:36.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2012-07-20T10:47:43.000Z (almost 14 years ago)
- Last Synced: 2025-03-23T20:43:49.186Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Introduction
[gen-node-module](https://github.com/killme2008/gen-node-module) is a script to generate a [node.js](http://www.nodejs.org) module skeleton.It's written in node.js.
#Useage
Type command to generate a node.js module skeleton:
./gen.sh module_name [targetPath]
module_name is the name of your node.js module and targetPath is the module project's parent path.Then gen-node-module will generate a skeleton for you,just like:
module_name
package.json
lib
module_name.js
test
module_name_test.js
And adds some declarations to sources for you.