Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fvilers/task
A simple command line to-do manager
https://github.com/fvilers/task
command-line command-line-tool nodejs task task-manager todo todolist typescript
Last synced: 19 days ago
JSON representation
A simple command line to-do manager
- Host: GitHub
- URL: https://github.com/fvilers/task
- Owner: fvilers
- License: mit
- Created: 2022-06-17T06:03:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-13T09:22:06.000Z (over 2 years ago)
- Last Synced: 2024-12-26T00:34:27.002Z (about 2 months ago)
- Topics: command-line, command-line-tool, nodejs, task, task-manager, todo, todolist, typescript
- Language: JavaScript
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# task
A simple command line to-do manager
## Install
```
npm install -g @fvilers/task
```## Usage
### Create a task
```
task add "Do the dishes"
```### List tasks
#### Remaining tasks
```
task list
``````
1 🔲 Take out the trash
2 🔲 Do the dishes
```#### All tasks
```
task list --all
``````
1 🔲 Take out the trash
2 🔲 Do the dishes
3 ☑️ Have good time
```### Update a task
```
task update 2 "Ask the kids to do the dishes"
```### Mark a task as done
```
task done 1
```### Mark a task as undone
```
task undone 1
```### Delete a task
```
task delete 3
```### Swap tasks
```
task swap 1 2
```### Empty the task list
Warning, this action is irreversible but a confirmation prompt is displayed. The confirmation prompte can be bypassed with the `-f` o `--force` flag.
```
task reset
``````
Are your sure you want to permanently delete 2 tasks (y/n)?
```### Get informations about your task list
```
task infos
``````
File location: C:\Users\Fabian\tasks.json
Done tasks: 1
Remaining tasks: 2
Total tasks: 3
```