to-do-list
v1.0.6
Published
command line to-do list
Downloads
9
Readme
Command Line To-Do List
Description
A command line tool that allows you to create a To-Do lists. Built using Node.js and Commander a command-line framework.
Author
- Patrick Falconer
Dependencies
"colors": "^1.1.2",
"commander": "^2.9.0",
"prettiest": "^1.0.0"
How To Use
In some cases you may need to edit your computers permissions to use these commands without sudo, please refer to NPM directions on how to do so
Install
npm install To-Do-List -g
Show All Lists
td show
Show Specific List
td show "List Name"
Create List
td create "List Name"
Create Item in List
td create "Existing List" "New Item"
Delete All Lists
td delete
Delete List
td delete "List Name"
Delete Item in List
td delete "List Name" "Item Name"
Change-Log
Version 1.0.2
- Lists names are displayed in magenta while list items are displayed with magenta background.
- Create, Delete, Show Functions
Version 1.0.3
- added created_at date to items
Version 1.0.4
- Fixed deletion bug
Version 1.0.5
- Clear screen on show function