1.0.3 • Published 5 years ago

mytodo v1.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

todocli

A small todo app, having cli interface

oclif Version Downloads/week License

Usage

$ npm install -g mytodo
$ mytodo COMMAND
running command...
$ mytodo (-v|--version|version)
mytodo/1.0.3 darwin-x64 node-v8.11.3
$ mytodo --help [COMMAND]
USAGE
  $ mytodo COMMAND
...

Commands

mytodo add

Add a new todo.

USAGE
  $ mytodo add

OPTIONS
  -t, --task=task  task to be added

DESCRIPTION
  ...
  Adds a task to the existing list

See code: src/commands/add.js

mytodo help [COMMAND]

display help for mytodo

USAGE
  $ mytodo help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

mytodo remove

To remove a todo task

USAGE
  $ mytodo remove

OPTIONS
  -f, --force=force  deletes the task from DB
  -i, --id=id        id of the task

DESCRIPTION
  ...
  Deletes the task.

See code: src/commands/remove.js

mytodo show

Show existings tasks

USAGE
  $ mytodo show

DESCRIPTION
  ...
  Lists down the existing task, all pending and done.

See code: src/commands/show.js

mytodo update

Update the task status

USAGE
  $ mytodo update

OPTIONS
  -c, --comment=comment  comment
  -i, --id=id            id of the task

DESCRIPTION
  ...
  Set the appropriate status to this task along with a comment (optional)

See code: src/commands/update.js