Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cachapa/tudo

A simple to-do app
https://github.com/cachapa/tudo

crdt dart flutter sqlite todo

Last synced: about 1 month ago
JSON representation

A simple to-do app

Awesome Lists containing this project

README

        

tudo is an experiment on simple, private, synchronized to-do lists.

It uses [sqlite_crdt](https://github.com/cachapa/sqlite_crdt) and is a useful demonstration of the realtime, offline-first capabilities powering [Libra](https://libra-app.eu) and [StoryArk app](https://storyark.eu).

## Try it out

[](https://github.com/cachapa/tudo/releases/latest)
[](https://play.google.com/store/apps/details?id=net.cachapa.tudo)
[](https://apps.apple.com/us/app/tudo-lists/id1550819275)

The server part of this project can be found here: [server](https://github.com/cachapa/tudo_server).

## Features

* **Anonymous**

No mandatory user accounts or tracking of any sort.

* **Shareable**

Lists can be shared between your devices or trusted contacts simply using the list id.

* **Real-time**

Changes to lists propagate immediately to every connected device where the app is open and online.

* **Private**

Each to-do list has a random unique identifier that is effectively impossible to guess.

* **Offline-first**

No loading screens. The app stores all the data it needs locally and works perfectly without a connection.

* **Multiplatform**

Mobile apps for Android and iOS, and more to come.

* **Open-source**

Look at how it's built. Modify it. Host it yourself. Maybe help me improve it?

## How it works

To do lists are stored on the device as [CRDTs](https://github.com/cachapa/sqlite_crdt) which enable conflictless synchronization with an essentially unlimited number of devices. Every device maintains a local copy of the entire database.

A live websocket connection to the server is kept open whenever the app is active and network is available. Local changes are immediately pushed to the network, and remote changes are pulled in real-time. This promotes rapid consistency of the database between all active devices in the network, and allows users to immediately see those changes in the interface.

The clients are built using [Flutter](https://flutter.io), which makes it possible to build applications for all popular platforms from a single shared codebase.

## How to contribute

Please file feature requests and bugs at the [issue tracker](https://github.com/cachapa/tudo/issues).