https://github.com/alesbe/node-todo-cli
CLI TODO list made with NodeJS
https://github.com/alesbe/node-todo-cli
Last synced: 5 months ago
JSON representation
CLI TODO list made with NodeJS
- Host: GitHub
- URL: https://github.com/alesbe/node-todo-cli
- Owner: alesbe
- Created: 2020-07-24T21:03:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-29T10:44:15.000Z (over 3 years ago)
- Last Synced: 2025-02-26T14:24:44.808Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NodeJS CLI TODO list
TODO list made with NodeJS in a console user interface.

## Install
Inside project folder, install dependencies:
```
npm install
```
## Usage
```
node app [command] [arguments]
```
## Commands
### help
Shows command help
```
node app help
```
### crear
Creates a new task
```
node app crear -d
```
### actualizar
Update the state of a task
```
node app actualizar -d [-c = true]
```
### listar
Shows task list
```
node app listar
```
### borrar
Delete a task from the list
```
node app borrar -d
```
## Arguments
### -descripcion
Specifies the description of a task
Alias: `-d`
### -completado
Specifies the state of the task
Alias: `-c`