0.0.0 • Published 4 years ago

todo-cli-hassan v0.0.0

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

todo-cli-hassan

Project 02 BootCamp 2021: Todo CLI

oclif Version Downloads/week License

Usage

$ npm install -g todo-cli-hassan
$ todo COMMAND
running command...
$ todo (-v|--version|version)
todo-cli-hassan/0.0.0 win32-x64 node-v12.17.0
$ todo --help [COMMAND]
USAGE
  $ todo COMMAND
...

Commands

todo help [COMMAND]

Display help for todo (App)

USAGE
  $ todo help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

todo add [TODO]

Add new todo to list

USAGE
  $ todo add [TODO]

ARGUMENTS
  TODO  todo to be added in list

OPTIONS
  -h, --help  show CLI help for add command

See code: src/commands/add.ts

todo list

Display list of all / incomplete todos

USAGE
  $ todo list

OPTIONS
  -h, --help  show CLI help for list command
  -m, --mask  Hide completed Todos

See code: src/commands/list.ts

todo togglestatus [ID]

Toolge completion status of a Todo by proving its ID.

USAGE
  $ todo togglestatus [ID]

ARGUMENTS
  ID  id of the todo whose status to be changed

OPTIONS
  -h, --help  show CLI help for togglestatus command

See code: src/commands/togglestatus.ts

todo remove

Remove Completed todos

USAGE
  $ todo remove

OPTIONS
  -h, --help  show CLI help for remove command

See code: src/commands/remove.ts

todo inquire

Use App with user prompting other than Commands

USAGE
  $ todo inquire

OPTIONS
  -h, --help       show CLI help for inquire command

See code: src/commands/inquire.ts