A minimal to do list app run on a command line interface built in JavaScript.
You will need to have node.js installed. Please refer to the node.js website to get started.
- Add tasks
- Remove (tick off) tasks
- View tasks
Clone the repository and install the required packages:
git clone https://github.com/lMarec/to-do-javascript.git
cd to-do-javascript
node todolist.jsRun node todolist.js and a menu will show up. You can choose from 1 to 4 in order to add tasks, remove tasks, view them, or exit the application respectively.
After each task you specify has been completed, the program will loop back to the menu, unless you selected 4 in the menu.
Your to do list is stored in an array, which is volatile. This means that if the application is closed, the list would be deleted.
This project is licensed under the GNU General Public License Version 2.
See the LICENSE file for details.
Created by Lucas Marechal
Feel free to reach out with questions or suggestions.
Please note that this is an experimental repository