Navigate:
All Reposexcalidraw
~$EXCALI0.2%

Excalidraw: Open source hand-drawn style whiteboard

React canvas library with encrypted collaborative drawing.

LIVE RANKINGS • 08:16 AM • STEADY
TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50
OVERALL
#27
11
DEVELOPER TOOLS
#6
1
30 DAY RANKING TREND
ovr#27
·Devel#6
STARS
114.1K
FORKS
12.1K
DOWNLOADS
139
7D STARS
+210
7D FORKS
+37
See Repo:
Share:

Learn more about excalidraw

Excalidraw is a canvas-based drawing tool built as a React component and distributed as an npm package. The application uses a local-first architecture with optional end-to-end encrypted real-time collaboration, storing drawings in a JSON-based .excalidraw format. It supports multiple export formats including PNG, SVG, and clipboard, along with shape libraries and localization across numerous languages. The tool is commonly used for creating wireframes, diagrams, flowcharts, and architectural sketches in both standalone and embedded contexts.


1

Embeddable React Component

Distributed as an npm package that integrates into existing applications without custom implementation. Supports both standalone and embedded modes with customization options for developers building collaborative tools.

2

Open JSON Format

Stores drawings in human-readable .excalidraw JSON instead of proprietary binaries. Enables version control, programmatic manipulation, and interoperability across tools without vendor lock-in.

3

End-to-End Encrypted Collaboration

Real-time multiplayer editing with client-side encryption ensures server cannot access drawing content. No account creation required for sharing via readonly links or collaborative sessions.


import { Excalidraw } from "@excalidraw/excalidraw";

export default function App() {
  return (
    <div style={{ height: "500px" }}>
      <Excalidraw />
    </div>
  );
}

vv0.18.0

Drops UMD bundle for ESM-only distribution; requires ES module support, updated TypeScript moduleResolution, and bundler config changes.

  • Switch imports to ESM format and set TypeScript moduleResolution to 'bundler', 'node16', or 'nodenext' (not 'node' or 'node10').
  • Copy fonts from node_modules/@excalidraw/excalidraw/dist/prod/fonts to your public directory and set window.EXCALIDRAW_ASSET_PATH if self-hosting.
vv0.17.3

Fixes UMD browser build broken in v0.17.0 and requires Vite users to set process.env.IS_PREACT as string "true".

  • Set process.env.IS_PREACT to JSON.stringify("true") in Vite config to avoid runtime errors with Preact detection.
  • Resolves arrow label rendering bugs caused by premature bounds caching and preserves customData during element conversion.
vv0.17.0

Removes Ref support in favor of excalidrawAPI prop; discontinues ready/readyPromise APIs and changes useDevice hook return structure.

  • Replace all Ref usage with the excalidrawAPI prop to access the Excalidraw API after upgrading.
  • Update useDevice hook consumers to handle new editor/viewport breakpoint differentiation in return value.

See how people are using excalidraw

Loading tweets...


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers