1.0.1 • Published 5 years ago
tasq-cli v1.0.1
tasq-cli
Description
This is a very simple todo list application that runs in the command line. The tasks are stored in a .txt file on your local machine. Tasks are managed with terminal commands.
Commands
Add a task --
tasq --add 'TASK_TITLE'Update a task --
tasq --update TASK_NUMBER 'NEW_TASK_TITLE'Delete a current task --
tasq --delete TASK_NUMBERSee current tasks --
tasq --currentComplete a task --
tasq --complete TASK_NUMBERSee completed tasks --
tasq --completedArchive a task --
tasq --archive TASK_NUMBERSee all commands --
tasq --info
Tests
To run the testing suites, run npm test for the unit tests. You will need to cd into the e2e folder to run the end-to-end tests: npm run e2e