Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rogeriopvl/nodo
☑ Command line TODO app
https://github.com/rogeriopvl/nodo
app cli node nodo terminal todo
Last synced: 3 months ago
JSON representation
☑ Command line TODO app
- Host: GitHub
- URL: https://github.com/rogeriopvl/nodo
- Owner: rogeriopvl
- License: mit
- Created: 2012-05-10T17:01:05.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2017-06-12T12:19:16.000Z (over 7 years ago)
- Last Synced: 2024-10-14T03:19:09.050Z (4 months ago)
- Topics: app, cli, node, nodo, terminal, todo
- Language: JavaScript
- Homepage: http://rogeriopvl.github.io/nodo
- Size: 5.34 MB
- Stars: 72
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nodo [![Build Status](https://travis-ci.org/rogeriopvl/nodo.png)](https://travis-ci.org/rogeriopvl/nodo)
## About
Nodo is a command line TODO application that uses a portable database file. Also, if you are a [Wunderlist][0] user, you can configure Nodo to be a command line interface to Wunderlist's database (only for version 1.* of Wunderlist).
The name "Nodo" comes from the mix of the words Node and TODO.
### Screencast Demo
[![Nodo Demo Video](https://i.vimeocdn.com/video/539197203.webp?mw=1920&mh=1080&q=70)](https://vimeo.com/42330826)## Install
Nodo is available as a package in the npm registry, so you can install it with:
npm install -g nodo
At install, Nodo creates a default configuration file (`~/.nodorc`) and a default local database (`~/.nodo.db`) with some sample tasks just to get you started.
You can rename and/or move you database file as long as you update your config file to reflect it's current location.### Using Wunderlist database (only for Wunderlist 1.*)
*Important:* Nodo is not compatible with Wunderlist 2. And I don't plan to fix this in the near future unless there's high demand.
I you wan't to use the Wunderlist database with Nodo you need to edit the config file and make sure that the database location parameter has the Wunderlist database file path. For instance in Mac OSX, the Wunderlist database file is at `~/Library/Wunderlist/wunderlist.db`, so just make your config file look like this:
{
"database": {
"location": "~/Library/Wunderlist/wunderlist.db",
}
}And you'll be all set to organize your day like a hacker!
*Important:* Nodo does not delete any data in the Wunderlist database. Even if you delete tasks, they are just marked as deleted, and can be recovered with the `nodo restore` command.
## First Run
On the first run nodo asks your permission to anonymously track some usage patterns. This is very useful to improve nodo, but completely optional and anonymous. Only major commands like `show`, `help`, `list`, etc are tracked. Their respective arguments are not tracked.
## Usage
Usage: nodo [arguments]
Available actions and options:
nodo show Show all lists and tasks todo
nodo show all Same as above
nodo show lists Show all lists and number of tasks in each one.
nodo show Show content of list
nodo show done Show all done tasks
nodo show deleted Show all deleted tasks
nodo show task Show detail of a tasknodo add list Add a new list
nodo add Add a new task to listnodo done Mark a task as done
nodo undo Mark a task as not donenodo star Mark a task as important
nodo unstar Mark a task as not importantnodo move Moves a task to a list
nodo delete list Delete list
nodo delete task Delete tasknodo restore Restore task
nodo restore task Restore task
nodo restore list Restore list## Bug Report
Nodo is in it's early versions. If you find any problems using Nodo, please report them back to me by opening an issue on Github.
## Credits
Thanks to:
* Pedro Faria, for his precious help in debugging Nodo on Linux.
[0]: http://wunderlist.com