1.0.1 • Published 8 years ago

cli-todo v1.0.1

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

cli-todo

Control your todo list directly from the cli.

##Instalation

npm install -g cli-todo

##Usage

###Add a new task

  Usage: add [options] <task>

  Add a new task to your #todo list

  Options:

    --help                     output usage information
    -t, --tag <tag>            add a task with a tag
    -d, --date <date>          add a task with a date
    -p, --priority <priority>  add a task with a priority (l = low, m = medium, h = high) (defaults as low)

###List your tasks

  Usage: list [options]

  Alias: ls

  List all your #todo items

  Options:

    --help                 output usage information
    -t, --tag <tag>        list all tasks with a determined tag
    -o, --orderBy <order>  list all tasks ordered by date, priority, or both.

###Remove tasks

  Usage: remove [options]

  Alias: rm

  Remove tasks from your #todo list

  Options:

    --help                   output usage information
    -a, --all                remove all of your tasks
    -t, --tag <tag>          remove tasks with a determined tag
    -s, --specific <taskId>  remove a specific task

###Clear the prompt

  Usage: clear [options]

  Alias: cls

  Clear the #todo prompt

  Options:

    --help  output usage information

###Exit the #todo prompt

 Usage: exit [options]

  Alias: quit

  Exits application.

  Options:

    --help  output usage information