1.0.3 • Published 5 years ago

todo-mv v1.0.3

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

todo-mv

Todo List

oclif Version CircleCI Downloads/week

Usage

$ npm install -g todo-mv
$ todo COMMAND
running command...
$ todo (-v|--version|version)
todo-mv/1.0.3 linux-x64 node-v10.15.0
$ todo --help [COMMAND]
USAGE
  $ todo COMMAND
...

Commands

todo add

Adds a new Todo

USAGE
  $ todo add

OPTIONS
  -n, --task=task  task

DESCRIPTION
  ...
  Adds a new todo to the existing list

See code: src/commands/add.js

todo help [COMMAND]

display help for todo

USAGE
  $ todo help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

todo remove

Removes a task by id

USAGE
  $ todo remove

OPTIONS
  -n, --id=id  (required) task id

DESCRIPTION
  ...
  Removes a task permanently from database by id

See code: src/commands/remove.js

todo show

Shows existing tasks

USAGE
  $ todo show

DESCRIPTION
  ...
  Shows all the tasks sorted by their ids

See code: src/commands/show.js

todo update

Marks a task as done

USAGE
  $ todo update

OPTIONS
  -n, --id=id  task id

DESCRIPTION
  ...
  Marks a task as done

See code: src/commands/update.js