
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
node-todo-cli
Advanced tools
A command line program that manages todo tasks
You need to have npm installed in your computer. It comes with Node.js and you can get it by installing Node from https://nodejs.org/en/
Run npm install to install all dependencies.
The npm link command is used from within the NodeJS package directory
we want to symlink:
> npm link
Executing the command without any arguments, or with a single argument help prints the CLI usage.
$ todo help
Usage :-
$ todo add "todo item" # Add a new todo
$ todo ls # Show remaining todos
$ todo del NUMBER # Delete a todo
$ todo done NUMBER # Complete a todo
$ todo help # Show usage
$ todo report # Statistics
$ todo completed # show completed todos
Use the ls command to see all the todos that are not yet complete. The most recently added todo displays first.
$ todo ls
[2] change light bulb
[1] water the plants
Use the add command. The text of the todo item should be enclosed within double quotes (otherwise only the first word is considered as the todo text, and the remaining words are treated as different arguments).
$ todo add "the thing i need to do"
Added todo: "the thing i need to do"
Use the del command to remove a todo item by its number.
$ todo del 3
Deleted todo #3
Attempting to delete a non-existent todo item will display an error message.
$ todo del 5
Error: todo #5 does not exist. Nothing deleted.
Use the done command to mark a todo item as completed by its number.
$ todo done 1
Marked todo #1 as done.
Attempting to mark a non-existed todo item as completed will display an error message.
$ todo done 5
Error: todo #5 does not exist.
Use the report command to see the latest tally of pending and completed todos.
$ todo report
yyyy-mm-dd Pending : 1 Completed : 4
use the completed command to see the list of completed todos.
$ todo completed
[2] change light bulb
[1] water the plants
FAQs
A command line program that manages todo tasks
We found that node-todo-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.