simple-todos-cli-tool
v1.0.1
Published
Table of Contents
Downloads
2
Readme
Simple To Do list as a CLI tool
Table of Contents
Overview
The simple-todos-cli-tool is a node.js application that can be downloaded from npm as a package. The package allows you to add, view, and mark tasks done.
How it works
To install the package:
npm install simple-todos-cli-tool
To add a tasks:
todos add <tasks>
To view existing tasks:
todos list
To mark tasks as done:
- To mark all tasks as done:
todos mark-done
- To mark a specific task as done, specify the index of the task you have completed:
todos mark-done -t 1
- To mark multiple tasks as done, specify the indexes of the tasks you have completed:
todos mark-done -t 1 3 6