FEA-CLI-TODO is a Command Line Interface (CLI) Todo App built with Node.js and Commander. It allows you to manage your todos through simple commands.
To use FEA-CLI-TODO, you need to have Node.js installed on your machine. Then, follow these steps:
- Open your terminal.
- Run the following command to install the app globally:
npm install -g fea-todo
To add a new todo, use the following command:
npx fea-todo add
You will be prompted to enter the todo name and category. The todo will be added to the list.
To list all todos, use the following command:
npx fea-todo list
This command will display a table with all your todos, including their names and categories.
# Add a new todo
npx fea-todo add
# List all todos
npx fea-todo list
This project is licensed under the MIT License - see the LICENSE file for details.
- Commander - The complete solution for Node.js command-line interfaces.
- Inquirer.js - A collection of common interactive command-line user interfaces.