0.9.2 • Published 9 months ago

@bradyjbridges/todo-cli v0.9.2

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

TODO CLI

A command line tool to manage a simple todo list.

Installation

This package should be installed globally.

npm install -g @bradyjbridges/todo-cli

Usage

TUI Usage

Easily add, update, and delete tasks using a simple interface.

todo

Screenshot 2024-10-04 at 9 37 50 PM

CLI Usage

Add a new task

todo add "New task"

Screenshot 2024-10-04 at 9 47 09 PM

List tasks

todo list

Screenshot 2024-10-04 at 9 38 10 PM

Delete all tasks

todo delete-all

Screenshot 2024-10-04 at 9 39 43 PM

Delete completed tasks

todo delete-completed

Screenshot 2024-10-04 at 9 40 10 PM

Delete specific tasks

todo delete -t <taskID taskID taskID>
todo delete -t 1 3 5

Screenshot 2024-10-04 at 9 44 19 PM

Mark tasks as complete

todo mark-complete -t <taskID taskID taskID>
todo mark-complete -t 1 3 5

Screenshot 2024-10-04 at 9 45 14 PM

Marks tasks as incomplete

todo mark-incomplete -t <taskID taskID taskID>
todo mark-incomplete -t 1 3 5

Screenshot 2024-10-04 at 9 45 34 PM

Manage settings

Allows customization of

Application title displayed in task list header

Screenshot 2024-10-04 at 9 49 11 PM

Message displayed when there are no tasks

Screenshot 2024-10-04 at 9 49 33 PM

Enable/disable TUI exit message

Message displayed when exiting TUI

Screenshot 2024-10-04 at 9 49 47 PM

todo settings

Screenshot 2024-10-04 at 9 57 14 PM

Help

todo --help

Screenshot 2024-10-04 at 9 39 26 PM

Command help

todo help [command]
todo help add

Check version

todo --version