docket-cli v2.0.7

Hello there. This tool is a very simple to use to-do app built for the command line. It's very easy to customize this program if need be and the whole program consists of 5 JS files. I've created this as a learning project and I find it useful since I can stay in the terminal and keep track of small tasks when working with a large codebase. You can find it on Github @ (github.com/ccbagel/docket-cli.)
To install this program, run npm i docket-cli
To start, run
todos docketOR you can skip the intro and use one of the commands below to start a task.To create a new item in your todo list, run
todos add "task".To see your current tasks, run
todos list.To mark a task complete, run
todos -tORtodos --task <tasks...>. NOTE: if you runtodos -tORtodos --taskwithout specifying the task(s) which have their index number (ie 0, 1, 2 etc) in the list, you'll mark all your tasks done.
If you need help, run todos --help to see the commands you can run.
Happy hacking 😎