1.2.0 • Published 9 years ago

create-module v1.2.0

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

create-module

NPM

Helper tool for the usual steps to create a module:

Usage

create-module <package>

Does the following work-flow:

mkdir <package>
cd <package>
# create <githubrepo> for <package>
git init
git remote add origin <githubrepo>
echo <readme> > readme.md
npm init
git add readme.md package.json
git commit -m "initial commit"
git push origin master
# set github repo description to package.json description

The readme.md is initialised with this template:

# <package>
[![NPM](https://nodei.co/npm/<package>.png)](https://nodei.co/npm/<package>/)