0.0.5 • Published 3 years ago

facile-todo-cli v0.0.5

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

Node.js: facile-todo-cli

a simple CLI tool for managing a To-Do List including show, create, update and delete functionality.

Installation

# npm
npm install -g facile-todo-cli

# yarn
yarn global add facile-todo-cli

Usage

1. Help

$ facile-todo
Usage: facile-todo [options] [command]

Options:
  -V, --version   output the version number
  -h, --help      display help for command

Commands:
  show            show all tasks
  delete          delete all tasks
  create <name>   create a new task
  help [command]  display help for command

2. Show all todo tasks

$ facile-todo show
What do you want to do? (Use arrow keys)
+ Add
↵ Quit
[_] 1 - Buy some fruit
[✓] 2 - Buy some water

3. Delete all todo tasks

$ facile-todo delete
All tasks have been deleted successfully

4. Create a new todo task

$ facile-todo create "Have lunch"
A new task has been created successfully