1.0.0 • Published 4 years ago

do-and-make v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

Do-it (A CLI ToDo APP)

A NodeJS Command Line Interface Todo list app for creating, storing and managing todos.

Deoendencies

  • chalk :- Used to add color to texts.

  • clear :- Provides the command to clear the terminal screen.

  • figlet :- Used to create ASCII art from text.

  • lodash :- Simple JS library to write concise codes.

  • yargs :- Used to build interactive command line tools.

Setting up

To run this app, run:

  • npm install

Using the app

To add a todo, run:

  • node app.js addTodo --title "name-of-todo"

To delete a todo, run:

  • node app.js deleteTodo --title "name-of-todo"

To read a todo, run:

  • node app.js readTodo --title "name-of-todo"

To list a todo, run:

  • node app.js listTodos