https://github.com/edmilson-dk/to-do-cli
This is a simple todo-list in cli format, developed in nodejs.
https://github.com/edmilson-dk/to-do-cli
cli nodejs nodejs-cli
Last synced: 3 months ago
JSON representation
This is a simple todo-list in cli format, developed in nodejs.
- Host: GitHub
- URL: https://github.com/edmilson-dk/to-do-cli
- Owner: edmilson-dk
- License: mit
- Created: 2020-12-19T13:00:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-19T13:34:11.000Z (over 4 years ago)
- Last Synced: 2025-01-21T21:31:48.774Z (5 months ago)
- Topics: cli, nodejs, nodejs-cli
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ToDO - CLI
This is a simple todo-list in cli format, developed in nodejs.
## Installation
__First clone the repository on your machine__
```sh
git clone https://github.com/DKSecurity99/to-do-cli
```__Then access the created folder and install the dependencies, with npm or yarn, make sure you have nodejs installed__
```sh
npm install
```or
```sh
yarn
```## Running
Below we have the commands available for you to use the cli.
> the created to-do are stored in the same directory of the tool, in the todos.json file.
__Add a new to-do__
```sh
todo add
```
__List all to-dos__
```sh
todo list
```
__Change the state of the to-do to completed__
```sh
todo do [index]
```
__Change the state of the whole to pending__
> As you can see the word "pending" is misspelled in the classified images,
> I realized after taking the images, but the error has already been corrected.```sh
todo undo [index]
```
__List all commands__
```sh
todo -h
```