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

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

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.