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

@sketchmark/plugin-annotations

v0.1.1

Published

Annotation plugin for Sketchmark. Adds lightweight geometry-style marks like angle arcs, right angles, equal ticks, midpoint marks, and dimension lines.

Downloads

248

Readme

@sketchmark/plugin-annotations

Lightweight textbook-style marks for Sketchmark.

This first version focuses on geometry-friendly annotations that compile into ordinary Sketchmark nodes after parsing. It complements @sketchmark/plugin-geometry without adding new renderer logic to the core bundle.

Install

npm install sketchmark @sketchmark/plugin-annotations

Usage

import { render } from "sketchmark";
import { annotations } from "@sketchmark/plugin-annotations";
import { geometry } from "@sketchmark/plugin-geometry";

render({
  container: document.getElementById("diagram")!,
  dsl: `
diagram
geo.point A x=90 y=220
geo.point B x=290 y=220
geo.point C x=190 y=90

geo.triangle tri points=[A,B,C]
annot.dimension base from=A to=B label="6 cm"
annot.equal eq1 from=A to=C count=1
annot.equal eq2 from=B to=C count=1
annot.angle ang a=A b=C c=B mode=interior label="theta"
annot.angle ref a=A b=C c=B mode=reflex label="360-theta" radius=60
end
`.trim(),
  plugins: [annotations(), geometry()],
});

Supported Commands

  • annot.angle <id> a=<pointId> b=<pointId> c=<pointId> [mode=interior|reflex] [label="..."] [radius=<n>] [label-distance=<n>] [label-dx=<n>] [label-dy=<n>] [invert=true]
  • annot.right-angle <id> a=<pointId> b=<pointId> c=<pointId> [label="..."] [size=<n>] [label-dx=<n>] [label-dy=<n>] [invert=true]
  • annot.equal <id> from=<pointId> to=<pointId> [count=<n>] [label="..."] [label-dx=<n>] [label-dy=<n>] [invert=true]
  • annot.midpoint <id> from=<pointId> to=<pointId> [label="..."] [r=<n>]
  • annot.dimension <id> from=<pointId> to=<pointId> [label="..."] [offset=<n>] [invert=true]

Notes

  • v1 is intended for absolute-positioned, geometry-style diagrams.
  • Commands resolve point positions from already-authored nodes, so diagram layout=absolute is required.
  • Annotation labels are emitted as helper text nodes.
  • annot.angle defaults to mode=interior.
  • mode=reflex draws the major arc between the two rays.
  • Exterior angles are best expressed by explicit geometry such as geo.ray plus an authored helper point, then annotated as a normal angle.
  • invert=true is the shared flip control for annotations.
  • For legacy annot.angle interior behavior, invert=true keeps the mark on the same angle and flips between a looser and tighter bend.
  • For annot.right-angle, invert=true keeps the square on the same corner and flips the label inward vs outward.
  • For annot.equal and annot.dimension, invert=true flips the mark to the opposite side of the segment.
  • For explicit angle modes, prefer label-distance=<n> when you want finer label placement control.
  • @sketchmark/plugin-notation can still run afterward to transform annotation labels too.