1.0.3 • Published 1 year ago

tsk-cl v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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!

Challenge Task List

DevChallenge

Getting Started

Install tsk globally:

npm install tsk-cl -g

or

yarn global tsk-cl

Or you can add it to your projects dev dependencies:

npm install tsk-cl --save-

or

yarn add tsk-cl -D

Then 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 high

Complete a task

tsk complete <task id>

Examples

tsk complete 2

Show next task

This command will show the oldest task for each priority.

tsk next

List tasks

List undone tasks:

tsk list

List all tasks:

tsk list -a

Delete a task

tsk delete <task id>

Examples

tsk delete 3
1.0.2

1 year ago

1.0.1

1 year ago

1.0.3

1 year ago

1.0.0

1 year ago