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