35
My own cli boilerplate tool
A cli tool to generate node module project includes tools like avaJs for testing, eslint, prettier etc...
Run
npm install -g luctst-cli
Or if you have NPX:
npx luctst-cli [commands] <options>
This package will create this folder structure by default:
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ ├── CODE_OF_CONDUCT.md
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── pull_request_template.md
├── lib/
│ ├── main.js
├── test/
│ ├── test.js
├── .editorconfig
├── .estlintrc.json
├── .gitattributes
├── .gitignore
├── .prettierignore
├── .prettierrc.json
├── .travis.yml
├── package-lock.json
├── package.json
├── README.md
Run this command to start the process:
luctst-cli start
Note - By default if path flag is not present folder will be created with
process.cwd()
With the —path flag:
luctst-cli start -p=<folder-name>
Note - Create the folder inside the folder.
More informations here - https://www.npmjs.com/package/luctst-cli
Happy coding ✨🧑💻
35