Yeoman Generator for creating Node modules
Install generator-ds-mod
:
npm install -g yo generator-ds-mod
Run yo ds-mod
to create a module. ds-mod will ask you some questions:
[?] What is the project name?
[?] What is the project description?
[?] What is your full name?
[?] What is your GitHub username?
and will produce:
root/
├── node_modules/
├── src/
│ └── index.js
├── test/
│ └── test.js
├── .editorconfig
├── .eslintrc
├── .gitattributes
├── .gitignore
├── .travis.yml
├── license.md
├── package.json
└── readme.md
MIT © Dustin Specker