Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alesbe/node-todo-cli
CLI TODO list made with NodeJS
https://github.com/alesbe/node-todo-cli
Last synced: about 2 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 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-29T10:44:15.000Z (over 2 years ago)
- Last Synced: 2023-03-04T01:42:23.408Z (almost 2 years 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.![TODO](https://i.imgur.com/uZb6zTj.png)
## 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 taskAlias: `-d`
### -completado
Specifies the state of the taskAlias: `-c`