devil-dev-cli
v1.0.0
Published
A CLI tool to scaffold modern projects
Readme
. Copy the four files (package.json, cli-config.json, index.js, README.md) into a folder: my-cli-prototype
2. Run: npm install to install the CLI's runtime deps (inquirer/chalk/shelljs/fs-extra)
3. (optional) Make index executable: chmod +x index.js
4. Link it globally for convenience: npm link
5. Run the prototype: mycli (or node index.js)
Notes:
- This prototype installs dependencies into the current project folder where you run it.
- It does not scaffold framework starter files yet; it only installs dependencies and shows a polished interactive flow.
- To extend frameworks or libraries, edit
cli-config.jsonand add new entries.
