1.0.3 • Published 3 years ago
tsk-cl v1.0.3
tsk-cl (tsk) 1.0.0
tsk is a command line todo list utility written in javascript.
This application was developed as a challenge for DevChallenge!
Getting Started
Install tsk globally:
npm install tsk-cl -g
or
yarn global tsk-clOr you can add it to your projects dev dependencies:
npm install tsk-cl --save-
or
yarn add tsk-cl -DThen you can run it with:
npx tsk <command>How to use it
tsk will create a .tasks file on current folder. This is a simple JSON file stringfied.
Create a new task
tsk add <task description> [-p <priority>]Examples
tsk add create task registrer screen -p low
tsk add create a template to create new components -p highComplete a task
tsk complete <task id>Examples
tsk complete 2Show next task
This command will show the oldest task for each priority.
tsk nextList tasks
List undone tasks:
tsk listList all tasks:
tsk list -aDelete a task
tsk delete <task id>Examples
tsk delete 3