Create a Node.js module with ease
See node-mdl-starter, it is an example of what you get using this generator and it is automatically generated with every new release of this generator.
- Generates a simple but ready to start project
- Includes only necessary tools
- Monitors repo quality through helpful badges
- Supports ES2015+ using Babel 7
- Jest testing framework
- Sensible ESLint config extends standard and Prettier
- Automates code reformatting using Prettier
- Build your documentations using esdoc (optional)
- Travis CI configuration (optional)
- Coveralls configuration (optional)
- Automatically deploy to npm registry with Travis CI (optional)
- Automates versioning releases with semantic-release and commitizen (optional)
- Friendly for contributions using Issue, Pull Request, and Contributing templates and some extras (optional)
npm install --global yo generator-node-mdlyo node-mdl
# answer questionsWith the most basic options, youʼll get a project structured like this:
$ tree
.
├── .github
│ ├── issue_template.md
│ └── pull_request_template.md
├── other
│ ├── code_of_conduct.md
│ ├── examples.md
│ └── roadmap.md
├── src
│ ├── index.js
│ └── index.test.js
├── .babelrc
├── .editorconfig
├── .esdoc.json
├── .eslintignore
├── .eslintrc
├── .gitattributes
├── .gitignore
├── .npmignore
├── .travis.yml
├── contributing.md
├── license
├── package.json
├── readme.md
└── yarn.lockLess boilerplate 🎉
There are 2 ways to supply your data to this generator.
The obvious way is runnin yo node-mdl and answer all questions. You can bypass questions by passing options as arguments.
Run yo node-mdl --help to see the different options.
This project contain some features that will make your life easier when setting up a new open-source project. Based on your choices, you may be asked to supply some of your accounts usernames and passwords (github, npm, etc...) so this project will automatically produce tokens for those accounts and save them to your TravisCI as secured enviorment variables if needed. You can bypass those questions by manually creating tokens and supply them using options as arguments.
-
--npmToken my-tokenis needed when using with--npmDeploy.Your token will end up in
TravisCIas a secured enviorment variables calledNPM_TOKEN. -
--githubToken my-tokenis needed when using with--createGithubRepositoryor with--travisCI.creating and viewing github authentication tokens
-
When using with
--createGithubRepositoryyour token doesn't need to contain any scope. -
When using with
--travisCIbut without--semanticReleaseyour token doesn't need to contain any scope. -
When using with
--travisCIand with--semanticReleaseyour token need to contain the following scopes:reporead:orguser:emailrepo_deploymentrepo:statuswrite:repo_hook
-
Read how to do it here.
generator-oss - Supports ES2015+ and XO by default
- generator-bunny - Supports ES2015+ and Flow by default
- generator-kcd-oss - Lots of features but many things left untouched
- generator-nm - A way simpler Yeoman generator
MIT © Avi Sharvit