← Blog ·

Open-source tldraw alternatives in 2026

tldraw is probably the best-known infinite-canvas SDK for React, and it’s good software. It’s also not open source in the way many developers assume: the licensing has tightened in steps — v2 (2024) went non-commercial, v2.4–3.x allowed free production use with a mandatory watermark, and since SDK 4.0 (September 2025) production use requires a license key outright: a 100-day trial, a free hobby license (non-commercial, watermark required), or a commercial license via sales. There’s no public price list; users on Hacker News have reported quotes around $6k/year for small teams.

That’s a legitimate business model. But if you searched for an alternative, you probably want one of two things: a genuinely free license, or a library that fits a stack tldraw doesn’t cover (plain JavaScript, React Native). Here’s the landscape.

What “open source” means here

Three license situations get conflated:

Everything below is MIT.

Excalidraw

Excalidraw is the heavyweight MIT option: a hugely popular hand-drawn-style whiteboard with an embeddable React component (@excalidraw/excalidraw). It’s mature, actively maintained, and battle-tested at scale.

Where it fits less well: it’s React-only, the embed brings Excalidraw’s own look and UX, and the component is a fairly large dependency. Collaboration runs through the separate excalidraw-room server. If you want “the Excalidraw experience inside my app,” it’s an excellent choice.

Quickdraw

Quickdraw — this project — is an MIT-licensed whiteboard SDK built to be embedded. The core engine is plain ESM with zero runtime dependencies (~46 kB unpacked), and the same engine ships as three packages:

You get pressure-sensitive ink, shapes with a hand-drawn wobble, arrows, sticky notes, images, a laser pointer, per-gesture undo, light and dark themes, grids, and PNG export — plus a diff-emitting store designed for persistence and real-time sync. A small “Made with Quickdraw” badge sits in the board’s corner by default; unlike tldraw’s attribution, turning it off is a boolean (watermark: false) — free, no license key, no phone-home.

Where it fits less well: it’s young. Excalidraw and tldraw have years of production hardening and much bigger communities. If you need rich text, frames, or a first-party sync server today, the older projects are ahead.

The DIY route: perfect-freehand + your own canvas

If you only need drawing — not selection, shapes, undo, and export — perfect-freehand (MIT, by tldraw’s author) turns pointer input into pressure-sensitive stroke outlines, and you render them yourself. Many teams start here and then meet the rest of the iceberg: hit-testing, camera math, undo semantics, touch gestures, palm rejection. Budget for that before you commit.

Quick comparison

QuickdrawExcalidrawtldraw SDK
LicenseMITMITCustom
ReactYesYesYes
No-framework JSYesNoNo
React NativeYesNoNo
Core dependenciesZeroSeveralMany
Community sizeYoungVery largeLarge
First-party sync serverNot yetexcalidraw-roomPaid (tldraw sync)

Choosing

Quickdraw is open to contributions. If the missing feature that sent you back to a paid SDK is on the roadmap, tell us — or build it with us.