# @since1997/todo-cli

> A CLI tool for TODO LIST using Node.js.

Latest version **1.0.6** (published 2021-08-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install @since1997/todo-cli
pnpm add @since1997/todo-cli
yarn add @since1997/todo-cli
bun add @since1997/todo-cli
```

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.0.6 |
| Published | 2021-08-30 |
| First published | 2021-08-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 12.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | duynguyen27091997 |

## Links

- npm: https://www.npmjs.com/package/@since1997/todo-cli
- npm.io page: https://npm.io/package/@since1997/todo-cli

## Dependencies (4)

- [conf](https://npm.io/package/conf.md) ^10.0.2
- [boxen](https://npm.io/package/boxen.md) ^5.0.1
- [chalk](https://npm.io/package/chalk.md) ^4.1.2
- [commander](https://npm.io/package/commander.md) ^8.1.0

## Recent versions

- 1.0.6 (latest) — 2021-08-30
- 1.0.5 — 2021-08-30
- 1.0.4 — 2021-08-30
- 1.0.3 — 2021-08-30
- 1.0.2 — 2021-08-30
- 1.0.1 — 2021-08-30
- 1.0.0 — 2021-08-30

## README

# TODOS-CLI

A CLI tool for TODO LIST using Node.js.

## Installation

Install the package globally on your machine:

```
npm i -g @since1997/todo-cli
```
or 
```
sudo npm i -g @since1997/todo-cli
```

## Usage

### 1. To view the TODO list:

```
todos list
```

### 2. To add a TODO task:

```
todos add <task>
```

For example:

```
todos add "Make Dinner"
```

If the task text has spaces either put quotations around it or escape the spaces. If it doesn't, quotations are not necessary.

3. Mark tasks as done:

```
todos mark-done [tasks...] [--all]
```

Example:

```
todos mark-done 1 2
```

where `-a, --all` will mark done all TODO item in list

4. Delete TODO task

```
todos remove [indexs...] [--all]
```

Example: 

```
todos remove 1 2
```

where `-a, --all` will remove all TODO item in list

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