Getting Started
Try Online
OpenPencil runs in the browser — no installation required. Open app.openpencil.dev to start designing.
Download Desktop App
Pre-built binaries for macOS, Windows, and Linux are available on the releases page.
| Platform | Download |
|---|---|
| macOS (Apple Silicon) | .dmg (aarch64) |
| macOS (Intel) | .dmg (x64) |
| Windows (x64) | .msi / .exe |
| Windows (ARM) | .msi / .exe |
| Linux (x64) | .AppImage / .deb |
Building from Source
Prerequisites
Installation
sh
git clone https://github.com/open-pencil/open-pencil.git
cd open-pencil
bun installDevelopment Server
sh
bun run devOpens the editor at http://localhost:1420.
Available Scripts
| Command | Description |
|---|---|
bun run dev | Dev server with HMR |
bun run build | Production build |
bun run check | Lint (oxlint) + typecheck (tsgo) |
bun run test | E2E visual regression (Playwright) |
bun run test:update | Regenerate screenshot baselines |
bun run test:unit | Unit tests (bun:test) |
bun run docs:dev | Documentation dev server |
bun run docs:build | Build documentation site |
Desktop App (Tauri)
The desktop app requires Rust and platform-specific prerequisites.
macOS
sh
xcode-select --install
cargo install tauri-cli --version "^2"
bun run tauri devWindows
- Install Rust with
stable-msvctoolchain:shrustup default stable-msvc - Install Visual Studio Build Tools with "Desktop development with C++" workload
- WebView2 is pre-installed on Windows 10 (1803+) and Windows 11
- Run:sh
bun run tauri dev
Linux
Install system dependencies (Debian/Ubuntu):
sh
sudo apt install libwebkit2gtk-4.1-dev build-essential curl wget file \
libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-devThen:
sh
bun run tauri devBuild for Distribution
sh
bun run tauri build # Current platform
bun run tauri build --target universal-apple-darwin # macOS universal