1.0.1 • Published 3 years ago

cli-checklist v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

CLI Checklist

A CLI checklist app.

Powered by Inquirer.js.

How to use

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

Structure of the input file

{
    "name": "Checklist", // Name for the checklist, will be shown in prompt
    "items": [
        "Question 1", // Checklist item 1
        "Question 2" // Checklist item 2
    ]
}