/tauri-todo-app

A simple desktop to-do list application written with React and Rust.

Primary LanguageRust

Todo

A simple desktop to-do list application written with React and Rust.

Download for macOS

Todo is a minimalistic, cross-platform desktop application for creating and managing to-do lists. It's built with Tauri, a framework for building desktop applications using a web front-end and Rust. Unlike Electron, Tauri doesn't ship an entire browser. Instead, the UI is rendered in a native WebView, resulting with a lower memory footprint and smaller bundles.

Todo light mode Todo dark mode

Features

  • Create, rename, and delete to-do lists
  • Create, mark as complete/incomplete, and delete to-do items
  • Light and dark themes
  • Native system menu and keyboard shortcut support
  • Local SQLite database
  • Lightning fast

Tech Stack

  • React + TypeScript
  • tailwindcss
  • Tauri
  • Rust
  • Prisma + SQLite

This app has only been tested and built for macOS, but a Windows or Linux bundle can be acquired by cloning the repo and building from source.

git clone https://github.com/mbenja/tauri-todo-app.git
cd tauri-todo-app/app
npm i
npm run tauri build

By default the Tauri CLI uses your machine's architecture to determine which executable to build, but this behavior can be tweaked by providing the target argument. See the Tauri docs for details.