NoteBloom is a frameless desktop notepad that gets out of your way. Notes are saved locally as JSON — no accounts, no sync, no tracking. Open it, write, close it. Your notes are always there.
- Auto-save — writes to disk 800 ms after you stop typing
- Draft cache — unsaved edits survive crashes and forced closes
- Pin notes — keep important notes anchored at the top of the list
- Duplicate — clone any note with one click
- Save as — export a note to a
.txtfile anywhere on your machine - Right-click menu — context actions on every note, fully configurable
- Settings panel — toggle UI elements, spell check, and individual context menu items
- Wipe all data — single button to delete everything and reset to defaults
- Dark / light theme — follows system preference, persists across restarts
- Keyboard shortcuts —
Ctrl+N,Ctrl+S,Ctrl+P,Ctrl+Backspace - Frameless window — native window controls (Mac and Windows 11 style)
- No telemetry, no network, no cloud — 100% local
Pre-built installers are available on the Releases page.
| Platform | Architecture | Format |
|---|---|---|
| Windows | x64 (Intel / AMD) | .msi |
| Windows | ARM64 | .msi |
macOS and Linux installers are not yet published — see Build from source to run on those platforms.
See BUILD.md for full platform-specific instructions covering Windows, macOS, and Linux.
Quick start (any platform):
# 1. Install Rust (macOS / Linux)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Windows: https://rustup.rs
# 2. Install dependencies
npm install
# 3. Run in development
npm run tauri dev
# 4. Build a release installer
npm run tauri build┌─────────────────────────────────────┐
│ React frontend │
│ src/App.tsx · src/lib/notes.ts │
│ Tailwind CSS v4 · shadcn/ui │
└────────────────┬────────────────────┘
│ invoke() / IPC
┌────────────────▼────────────────────┐
│ Tauri v2 core │
│ src-tauri/src/lib.rs │
│ Commands: list, create, update, │
│ delete, toggle_pin, duplicate, │
│ get_settings, save_settings, │
│ wipe_all_data │
└────────────────┬────────────────────┘
│ std::fs
┌────────────────▼────────────────────┐
│ Local JSON files │
│ %APPDATA%/com.chloe.notebloom/ │ ← Windows
│ ~/Library/Application Support/… │ ← macOS
│ ~/.local/share/… │ ← Linux
│ notes.json · settings.json │
└─────────────────────────────────────┘
See docs/architecture.md for a deeper breakdown.
Contributions are welcome. Please read CONTRIBUTING.md before opening a pull request.
Found a bug? Open an issue.
MIT — see LICENSE.

