npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@quartz-community/obsidian-plugin-excalidraw

v0.1.0

Published

Excalidraw page type plugin for Quartz v5. Renders Obsidian Excalidraw drawings as interactive SVG pages.

Readme

@quartz-community/obsidian-plugin-excalidraw

A page type plugin that renders Obsidian Excalidraw drawings (.excalidraw.md and .excalidraw files) as full-page interactive SVG visualizations. Supports shapes, text, arrows, freedraw strokes, embedded notes with transcluded content, embedded webpages via iframe, and full dark/light theme adaptation using Excalidraw's color palette.

Installation

npx quartz plugin add github:quartz-community/obsidian-plugin-excalidraw

Usage

plugins:
  - source: github:quartz-community/obsidian-plugin-excalidraw
    enabled: true
    options:
      enableInteraction: true
      darkMode: "auto"
      exportPadding: 20

For advanced use cases, you can override in TypeScript:

import * as ExternalPlugin from "./.quartz/plugins";

ExternalPlugin.ExcalidrawPage({
  enableInteraction: true,
  darkMode: "auto",
  exportPadding: 20,
});

Features

  • Shapes: Rectangles, ellipses, and diamonds rendered with roughjs hand-drawn style, respecting fill styles (hachure, cross-hatch, solid), stroke styles (solid, dashed, dotted), and roughness levels.
  • Text: Multi-line text with Virgil (hand-drawn), Helvetica, and Cascadia font families. Supports alignment and vertical positioning.
  • Arrows and lines: Smooth curved paths for multi-point arrows with arrowhead markers. Straight lines for two-point connections.
  • Freedraw: Freeform strokes rendered via perfect-freehand with pressure simulation.
  • Images: Embedded images displayed from base64 data URLs stored in the drawing.
  • Embedded notes: Obsidian wikilink embeds ([[note]]) resolved and transcluded with rendered HTML content.
  • Embedded webpages: URL embeds rendered as sandboxed iframes with title bars.
  • Dark/light mode: Full theme support using CSS custom properties. All 65 Excalidraw palette colors have pre-computed dark-mode equivalents matching Excalidraw's own applyDarkModeFilter algorithm.
  • Pan and zoom: Mouse drag to pan, scroll wheel to zoom, with zoom in/out/reset buttons.
  • Full-viewport layout: Dedicated page frame with toggleable sidebar (matching canvas-page pattern).
  • Compressed JSON: Supports both json and compressed-json (LZ-String) formats from the Obsidian Excalidraw plugin.
  • Filter integration: Prevents .excalidraw.md files from being double-processed as regular Markdown pages.

Configuration

| Option | Type | Default | Description | | ------------------- | --------- | -------- | ---------------------------------------------------------- | | enableInteraction | boolean | true | Whether to enable pan and zoom interaction on the drawing. | | darkMode | string | "auto" | Theme mode: "auto", "light", or "dark". | | exportPadding | number | 20 | Padding around the drawing content in pixels. |

Supported file formats

.excalidraw.md (Obsidian format)

The primary format produced by the Obsidian Excalidraw plugin. Contains YAML frontmatter, text elements section, optional embedded files section, and the drawing data in a %%-delimited block as either json or compressed-json (LZ-String base64).

.excalidraw (Pure JSON)

Standard Excalidraw JSON format with type, version, elements, appState, and files fields.

License

MIT