All Projects → rogeriopvl → Nodo

rogeriopvl / Nodo

Licence: mit
☑ Command line TODO app

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Nodo

Openterm
OpenTerm is a sandboxed command line interface for iOS.
Stars: ✭ 1,504 (+1960.27%)
Mutual labels:  cli, terminal, app
Taskline
Tasks, boards & notes for the command-line habitat
Stars: ✭ 78 (+6.85%)
Mutual labels:  todo, cli, terminal
Dstask
Single binary terminal-based TODO manager with git-based sync + markdown notes per task
Stars: ✭ 431 (+490.41%)
Mutual labels:  todo, cli, terminal
Listr2
NodeJS Task List derived from the best! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.
Stars: ✭ 73 (+0%)
Mutual labels:  cli, terminal
Rang
A Minimal, Header only Modern c++ library for terminal goodies 💄✨
Stars: ✭ 1,080 (+1379.45%)
Mutual labels:  cli, terminal
Nord Konsole
An arctic, north-bluish clean and elegant Konsole color scheme.
Stars: ✭ 56 (-23.29%)
Mutual labels:  cli, terminal
Colorette
Easily set the color and style of text in the terminal.
Stars: ✭ 1,047 (+1334.25%)
Mutual labels:  cli, terminal
Http Prompt
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie
Stars: ✭ 8,329 (+11309.59%)
Mutual labels:  cli, terminal
Taskbook
Tasks, boards & notes for the command-line habitat
Stars: ✭ 8,326 (+11305.48%)
Mutual labels:  todo, cli
Fsq
A tool for querying the file system with a SQL-like language.
Stars: ✭ 60 (-17.81%)
Mutual labels:  cli, terminal
Ginseng
C++ REPL Tool Builder
Stars: ✭ 65 (-10.96%)
Mutual labels:  cli, terminal
Crex
Explore, test, and check regular expressions in the terminal.
Stars: ✭ 54 (-26.03%)
Mutual labels:  cli, terminal
Crossline
A small, self-contained, zero-config, MIT licensed, cross-platform, readline and libedit replacement.
Stars: ✭ 53 (-27.4%)
Mutual labels:  cli, terminal
Pizza Cli
🍕 Order a pizza in a CLI app (just for fun!)
Stars: ✭ 58 (-20.55%)
Mutual labels:  cli, app
Picofeed
A minimal terminal rss reader
Stars: ✭ 50 (-31.51%)
Mutual labels:  cli, terminal
Spotify Tui
Spotify for the terminal written in Rust 🚀
Stars: ✭ 11,061 (+15052.05%)
Mutual labels:  cli, terminal
Sub Tv Cli
Downloading your series subtitles via terminal 📺
Stars: ✭ 63 (-13.7%)
Mutual labels:  cli, terminal
App
Reusable framework for micro services & command line tools
Stars: ✭ 66 (-9.59%)
Mutual labels:  cli, app
Conget
A CLI app for downloading file concurrently.
Stars: ✭ 72 (-1.37%)
Mutual labels:  cli, terminal
Ed
A modern UNIX ed (line editor) clone written in Go
Stars: ✭ 44 (-39.73%)
Mutual labels:  cli, terminal

Nodo Build Status

About

Nodo is a command line TODO application that uses a portable database file. Also, if you are a Wunderlist 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

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 <action> [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 <list_name>            Show content of list
    nodo show done                   Show all done tasks
    nodo show deleted                Show all deleted tasks
    nodo show task <task_id>         Show detail of a task

    nodo add list <list_name>        Add a new list
    nodo add <list_name> <task_name> Add a new task to list

    nodo done <task_id>              Mark a task as done
    nodo undo <task_id>              Mark a task as not done

    nodo star <task_id>              Mark a task as important
    nodo unstar <task_id>            Mark a task as not important

    nodo move <task_id> <list_name>  Moves a task to a list

    nodo delete list <list_name>     Delete list
    nodo delete task <task_id>       Delete task

    nodo restore <task_id>           Restore task
    nodo restore task <task_id>      Restore task
    nodo restore list <list_name>    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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].