Skip to content

Tech Stack

Core Technologies

LayerTechnologyWhy
RenderingSkia CanvasKit WASMSame engine as Figma — proven performance, GPU-accelerated, pixel-perfect
UI FrameworkVue 3 + VueUseReactive composition API, excellent TypeScript support
ComponentsReka UIHeadless, accessible UI primitives (tree, slider, etc.)
StylingTailwind CSS 4Utility-first, fast iteration, dark theme
LayoutYoga WASMCSS flexbox and grid engine from Meta, battle-tested in React Native
File FormatKiwi binary + ZstdFigma's own format — compact, fast parsing, .fig compatible
CollaborationTrystero + YjsP2P WebRTC via MQTT signaling, CRDT sync, y-indexeddb persistence
ColorculoriColor space conversions (HSV, RGB, hex)
AI/MCPMCP SDK + Hono90+ tools for AI coding tools, stdio + HTTP transports
JSX TransformSucraseLightweight (201 KB) JSX → JS, synchronous, browser-compatible
Eventsnanoevents108 bytes, typed event emitter for SceneGraph mutations
DesktopTauri v2~5MB native app (vs Electron's ~100MB), Rust backend
BuildVite 7Fast HMR, native ES modules
TestingPlaywright + bun:testVisual regression (E2E) + fast unit tests
LintingoxlintRust-based, orders of magnitude faster than ESLint
FormattingoxfmtRust-based formatter
Type Checkingtypescript-go (tsgo)Native Go implementation of TypeScript type checker

Key Dependencies

json
{
  "canvaskit-wasm": "^0.40.0",
  "vue": "^3.5.29",
  "yoga-layout": "npm:@open-pencil/yoga-layout@3.3.0-grid.2",
  "nanoevents": "^9.1.0",
  "sucrase": "^3.35.1",
  "reka-ui": "^2.8.2",
  "tailwindcss": "^4.2.1",
  "culori": "^4.0.2",
  "fzstd": "^0.1.1",
  "fflate": "^0.8.2",
  "trystero": "^0.20.0",
  "yjs": "^13.6.24",
  "y-indexeddb": "^9.0.12"
}

Why Not...

Why not SVG rendering?

SVG is slow for complex documents. Every node is a DOM element — 10,000 nodes means 10,000 DOM nodes with layout, paint, and compositing overhead. CanvasKit draws everything to a single GPU surface. (Penpot still defaults to SVG rendering but has an opt-in Rust/Skia WASM renderer in development.)

Why not Electron (like Figma desktop)?

Tauri v2 uses the system webview (~5MB) instead of bundling Chromium (~100MB). The Rust backend provides native performance for file I/O and system integration.

Why not React (like the original plan)?

The project migrated from React to Vue 3 early in development. Vue's reactivity system and VueUse composables proved more ergonomic for the editor's state management needs.

Why not custom layout engine?

Yoga is maintained by Meta, battle-tested across billions of React Native devices, and implements the CSS flexbox spec. Building a custom engine would be months of work to reach the same correctness level.

Planned Technologies

TechnologyPurposePhase
CSS Grid in YogaGrid-based auto layout✅ Shipped via Yoga fork (@open-pencil/yoga-layout)

Released under the MIT License.