0.0.0 • Published 5 years ago

@msweeney777/todo_cli v0.0.0

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

todocli

oclif Version Downloads/week License

Usage

$ npm install -g @msweeney777/todo_cli
$ todocli COMMAND
running command...
$ todocli (-v|--version|version)
@msweeney777/todo_cli/0.0.0 darwin-x64 node-v10.13.0
$ todocli --help [COMMAND]
USAGE
  $ todocli COMMAND
...

Commands

todocli add

Adds a new todo

USAGE
  $ todocli add

OPTIONS
  -n, --task=task  task

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

See code: src/commands/add.js

todocli hello

Describe the command here

USAGE
  $ todocli hello

OPTIONS
  -n, --name=name  name to print

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/hello.js

todocli help [COMMAND]

display help for todocli

USAGE
  $ todocli help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

todocli remove

Removes a task by id

USAGE
  $ todocli remove

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

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

See code: src/commands/remove.js

todocli show

Shows existing task

USAGE
  $ todocli show

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

See code: src/commands/show.js

todocli update

Marks a task as done

USAGE
  $ todocli update

OPTIONS
  -n, --id=id  task id

DESCRIPTION
  ...
  Marks a task as done

See code: src/commands/update.js