A CLI checklist app.
Powered by Inquirer.js.
Install globally using npm install -g cli-checklist
or install as a developer dependency using npm install -D cli-checklist
Initialize (create a sample input file) using cli-checklist init
Run the checklist using cli-checklist checklist.json
or cli-checklist /path/to/your/file
This can be used with Husky to perform checklists before committing or pushing to repos.
{
"name": "Checklist", // Name for the checklist, will be shown in prompt
"items": [
"Question 1", // Checklist item 1
"Question 2" // Checklist item 2
]
}