Research-Stack/5-Applications/notion-native-tauri
2026-05-08 15:04:30 -05:00
..
gen/schemas Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
src Remove reqwest to fix ring linking errors; simplify dependencies 2026-05-04 19:27:44 -05:00
build-and-install.sh Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
build.rs Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
Cargo.lock Fix Dependabot dependency alerts 2026-05-08 15:04:30 -05:00
Cargo.toml Remove reqwest to fix ring linking errors; simplify dependencies 2026-05-04 19:27:44 -05:00
README.md Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
tauri.conf.json Fix Tauri builds: navigate API, unused imports, build config 2026-05-04 19:22:01 -05:00

Notion Native (Tauri)

Lightweight native Linux wrapper for Notion Web, replacing the broken Electron build.

Features

  • Multi-threaded: Tokio runtime with 4 worker threads + background prefetch
  • GPU-accelerated: Uses system WebKitGTK WebView (Mesa/Vulkan compositing)
  • No bundled Chromium: ~1/50th the size of Electron Notion
  • Native Rust: Compiled binary, not interpreted JS

Build

cd "/home/allaun/Documents/Research Stack/5-Applications/notion-native-tauri"
cargo build --release

First compile: ~10-20 minutes (downloads and compiles all dependencies).

Install

# Build Debian package
cargo tauri bundle --bundles deb

# Or run directly without packaging
./target/release/notion-native-tauri

Launch

notion-native-tauri

vs Electron Notion

Electron Notion Notion Native (Tauri)
Renderer Bundled Chromium System WebKitGTK
Binary size ~200 MB ~15 MB
RAM idle ~400 MB ~80 MB
GPU Broken on NVIDIA/Wayland Uses native Mesa compositor
Threads Single main thread Tokio multi-threaded pool