create-module
v1.2.0
Published
Helper to create a module
Readme
create-module
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 descriptionThe readme.md is initialised with this template:
# <package>
[](https://nodei.co/npm/<package>/)

