# todos-manager

> CLI to manage todos

Latest version **1.1.0** (published 2019-08-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install todos-manager
pnpm add todos-manager
yarn add todos-manager
bun add todos-manager
```

Provides the command `todos`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2019-08-01 |
| First published | 2019-08-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 7.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Satyam Setia |
| Maintainers | satyamsetia |
| Keywords | todos, cli, manage, schedule, npm, javascript |

## Links

- npm: https://www.npmjs.com/package/todos-manager
- Repository: https://github.com/SatyamSetia/todos-manager
- Homepage: https://github.com/SatyamSetia/todos-manager#readme
- Issues: https://github.com/SatyamSetia/todos-manager/issues
- npm.io page: https://npm.io/package/todos-manager

## Dependencies (1)

- [easy-table](https://npm.io/package/easy-table.md) ^1.1.1

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2019-08-01
- 1.0.0 — 2019-08-01

## README

# todo-manager

todos-manager is a package that can be used for managing tasks using CLI. Easily add, delete, update and list your tasks. It can also save tasks as text file in current directory.

## Installing
```
npm install -g todos-manager
```

## Usage
```
todos [command]
```
_Run above command in command line. For example:_
__todos pending__ _will print all pending tasks_

## Commands
Command | Result
--- | ---
add | It will add the task written after 'add'
update | It will update the task from pending to completed
pending | It will list all pending tasks
completed | It will list all completed tasks
clean | It will truncate all tasks
save | It will save all tasks in text file

### Examples
```
todos add lorem ipsum
- It will add `lorem ipsum` as a pending task.
```

```
todos update lorem ipsum
- It will update the status of `lorem ipsum` from pending to completed.
```

```
todos
- It will list all tasks with their status.
```

```
todos pending
- It will list all pending tasks.
```

```
todos completed
- It will list all completed tasks.
```

```
todos clean
- It will delete all tasks.
```

```
todos clean pending
- It will delete all pending tasks.
```

```
todos clean completed
- It will delete all completed tasks.
```

```
todos save
- It will save all tasks and the their status in a text file. You can change the name of output file by adding custom filename after this command.
```

```
todos save pending
- It will save all pending tasks in a text file. You can change the name of output file by adding custom filename after this command.
```

```
todos save completed
- It will save all completed tasks in a text file. You can change the name of output file by adding custom filename after this command.
```

---
_Source: https://npm.io/package/todos-manager · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
