This CLI allows to list and add tasks.
npm install -g ado-cli
In order to use CLI you have to login. CLI does not store your credentials. It just uses them to get token.
In order to login you have to run the following command
ado login -e your_email -p your_password
ado list # output all tasks
ado add task_title
Example:
ado add 'buy cookies'
It is also possible to set due date (-d is shortcut for --due-date). Possible values for due date are tomorrow, upcoming, someday.
ado add -d tomorrow 'buy more cookies'
Add several tasks
ado add --due-date tomorrow 'buy oreo' 'buy kitkat'
Command | Options | Description |
---|---|---|
login | --email --password | Login to Any.DO account |
list | Display all incomplete tasks | |
add | --due-date(optional, by default will be today) | Add task |
delete | Choose task to delete | |
web | Open web version of Any.DO in default browser |
- nodejs