https://github.com/bryanbuchs/todo
CLI to manage a TODO.md file
https://github.com/bryanbuchs/todo
Last synced: 7 months ago
JSON representation
CLI to manage a TODO.md file
- Host: GitHub
- URL: https://github.com/bryanbuchs/todo
- Owner: bryanbuchs
- Created: 2023-04-28T20:54:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-14T17:28:50.000Z (about 3 years ago)
- Last Synced: 2024-12-29T03:50:48.275Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TODO
- `npm i -g bryanbuchs/todo`
CLI to manage a `TODO.md` file. Tasks can be added or toggled completed via interactive prompts. A task can also be added using a cli argument.
## Usage
`> todo`
...will list the todos in your file as a multiselect prompt. Choose the tasks to complete, and then save back to the file
`> todo add`
...will open a prompt to add a new task
`> todo add "do this thing"`
...will append a new task to the end of your file
When running any action, if the `TODO.md` file does not exist one will be created.
`TODO.md` is a markdown file, which can be edited manually outside of this CLI.