generator-easy-start
v1.4.3
Published
Minimal configuration to start from scratch
Downloads
4
Readme
easy-start
Minimal configuration to start a npm module from scratch (on my way).
Module structure
module
│ .eslintrc
│ .gitignore
│ package.json
│ README.md
│
└───src
│ │ index.js
│
└───test
│ index.test.js
⚠️ By default the module is created as type module -in case you don't like it, remove "type" property from the package.json
-
Dependencies
Install the generator 🚀
In order to install the generator
npm i -g generator-easy-start
Start a new module 📝
Create a folder and navigate into it
mkdir my-new-module && cd my-new-module
Execute the scaffolding and 🥳
yo easy-start