A minimalistic todo app that does as little as possible.
- Keyboard first (don't lift your fingers)
- Super fast (no cloud)
- Tiny (only 5 MB)
I wanted to play around with Chakra UI and Tauri, so I do what any uninspired developer does: build a todo app.
On another note, most native todo apps for MacOS are bloated if you just want a simple list to chew through daily. And most of them have mediocre keyboard support.
React:
# Install deps
yarn
# Run devserver
yarn start
# Build for prod
yarn build
Tauri:
# Install deps
brew install gcc
xcode-select --install
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Verify all looks good
yarn tauri info
# Run in dev mode
yarn tauri dev
# Build for release
yarn tauri build
MIT - have fun!