项目作者: prabhatcraz

项目描述 :
A command line task manager
高级语言: JavaScript
项目地址: git://github.com/prabhatcraz/taskmanager.git
创建时间: 2018-08-24T08:26:19Z
项目社区:https://github.com/prabhatcraz/taskmanager

开源协议:

下载


Command line TaskManager

A command line task manager written in nodejs.

install with -g to use it directly

  1. npm i -g task-commando
  1. Options:
  2. -h, --help output usage information
  3. Commands:
  4. list|ls list tasks
  5. remove|rm delete a task
  6. create|c create a task
  7. done|d mark a task done
  8. notDone|nd mark a task not done.
  9. resetAll deleteAll
  10. Examples:
  11. $ tm --help
  12. $ tm ls
  13. $ tm c <<task title>>
  14. $ tm d <<task id>> # Task id is the number in brackets after task title
  15. $ tm nd <<task id>> # Task id is the number in brackets after task title
  16. $ tm resetAll