https://github.com/theatom06/paperplane
A simple way to send files over to linux serer over http
https://github.com/theatom06/paperplane
Last synced: over 1 year ago
JSON representation
A simple way to send files over to linux serer over http
- Host: GitHub
- URL: https://github.com/theatom06/paperplane
- Owner: theatom06
- Created: 2025-03-10T12:23:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-17T05:21:30.000Z (over 1 year ago)
- Last Synced: 2025-03-17T06:28:14.006Z (over 1 year ago)
- Language: TypeScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paperplane
Paperplane is a simple TUI todo app.
## Installation
This is published on the npm registry but works on bun.
It is recommended to install it globally so you can use it from anywhere.
It is cross-platform and should work on Windows, macOS, and Linux.
```bash
`bash
$ bun add -g @atom06/paperplane
$ bun x paperplane
`
## Usage
The app has a few commands that you can use to interact with it:
### Commands
- `add `: Add a new task with the given ID.
- `delete `: Delete a task with the given ID.
- `list`: List all tasks.
- `edit `: Edit a task with the given ID.
- `done `: Mark a task with the given ID as done.
### Examples
- Add a task:
```bash
$ paperplane add milk
Enter task: Buy milk
Task added successfully.
```
- List all tasks:
```bash
$ paperplane list
1. Buy milk
```
- Mark a task as done:
```bash
$ paperplane done 1
Task marked as done.
```
- Delete a task:
```bash
$ paperplane delete 1
Task deleted successfully.
```
- Edit a task:
```bash
$ paperplane edit 1
Enter new task: Buy milk and eggs
Task edited successfully.
```
## Report Issues
If you find any issues, please report them [here](https://github.com/theatom06/paperplane/issues).
## License
MIT
## Author
theatom06