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

react-image-annotator-canvas

v0.1.1

Published

A generic React canvas component for drawing, selecting, moving, resizing, and labeling rectangular annotations on images. Bring your own categories — use it for ML labeling, visual-diff QA, manuscript markup, or any image-annotation workflow.

Readme

react-image-annotator-canvas

A small, dependency-free React component for drawing rectangular annotations on an image via an HTML canvas. Define your own categories — the library is intentionally not opinionated about what an annotation means.

Use it for:

  • Object labeling for ML pipelines
  • Visual-diff / QA review tools
  • Tagging regions of screenshots, manuscripts, blueprints, microscopy images
  • Anywhere you need "draw a box on this picture and attach metadata"

Install

npm install react-image-annotator-canvas

Peer deps: react >= 17, react-dom >= 17.

Concepts

Annotation — one rectangle. Has id, x, y, width, height, and an optional categoryId that references a category.

Category — a user-defined label + color. The library doesn't know what your categories mean; you supply them.

Three modes, controlled independently via props:

| Prop | Effect | | ----------------- | ----------------------------------------------------------------------------------------------- | | drawingEnabled | Click-and-drag on empty area creates a new annotation in activeCategoryId. | | editingEnabled | Selected annotations show resize handles and a delete button. Their bodies can be dragged to move. | | selectionMode | 'single' (default), 'multi' (shift/cmd-click to add), or 'none'. |

These are orthogonal — you can have drawingEnabled and editingEnabled both on at once. Or both off for a view-only image overlay.

Usage

import { useState } from 'react'
import {
  ImageAnnotator,
  type Annotation,
  type Category,
} from 'react-image-annotator-canvas'

const CATEGORIES: Category[] = [
  { id: 'cat',  label: 'Cat',  color: '#ef4444' },
  { id: 'dog',  label: 'Dog',  color: '#10b981' },
  { id: 'bird', label: 'Bird', color: '#a855f7' },
]

export function Labeler() {
  const [annotations, setAnnotations] = useState<Annotation[]>([])
  const [activeCategoryId, setActiveCategoryId] = useState('cat')
  const [mode, setMode] = useState<'view' | 'edit' | 'draw'>('edit')

  return (
    <ImageAnnotator
      imageUrl="/photo.jpg"
      annotations={annotations}
      onChange={setAnnotations}
      categories={CATEGORIES}
      activeCategoryId={activeCategoryId}
      drawingEnabled={mode === 'draw'}
      editingEnabled={mode !== 'view'}
      showLabels
    />
  )
}

Props

| Prop | Type | Default | Description | | ------------------- | ------------------------------------------ | ----------- | ------------------------------------------------------------------------------------------ | | imageUrl | string | — | Source URL for the underlying image. The canvas is sized to the image's natural dimensions. | | annotations | Annotation[] | — | Current annotations (controlled). | | onChange | (annotations: Annotation[]) => void | — | Fires for every change: draw, resize, move, select, delete. | | categories | Category[] | [] | Category definitions referenced by Annotation.categoryId. | | activeCategoryId | string | — | Category id used for newly drawn annotations. Required when drawingEnabled is true. | | drawingEnabled | boolean | false | Click-and-drag on empty area creates a new annotation. | | editingEnabled | boolean | true | Selected annotations show handles + delete button; body is draggable to move. | | selectionMode | 'single' \| 'multi' \| 'none' | 'single' | How selection works. | | showLabels | boolean | false | Render the category label inside the top-left of each annotation. | | onSelect | (annotation: Annotation \| null) => void | — | Fires when an annotation is selected/clicked. null when the user clicks empty space. | | theme | AnnotatorTheme | see source | Override visual defaults (handle size, selection stroke, etc.). |

Types

interface Annotation {
  id: string | number
  x: number
  y: number
  width: number
  height: number
  categoryId?: string
  label?: string          // overrides the category label on this annotation
  isSelected?: boolean    // transient UI flag — strip before persisting
  data?: unknown          // free-form payload; the library ignores it
}

interface Category {
  id: string
  label: string
  color: string           // any CSS color
  fillOpacity?: number    // 0–1, defaults to 0.35
}

Coordinates are in the image's natural pixel space, so values stay stable regardless of how the image is displayed.

Interaction model

Mouse / touch

The canvas listens to Pointer Events with setPointerCapture, so all the interactions below work identically with a mouse, trackpad, stylus, or finger.

| Action | Result | | ------------------------------------------------- | ----------------------------------------------------------------------- | | Click / tap an annotation | Selects it. With selectionMode='single', clears other selections. | | Shift/Cmd/Ctrl-click an annotation (multi mode) | Toggles its inclusion in the current selection. | | Click empty space | Clears the selection. | | Click the red X on a selected annotation | Deletes the annotation. Requires editingEnabled. | | Drag a corner handle of a selected annotation | Resizes from that corner. Requires editingEnabled. | | Drag the body of a selected annotation | Moves the annotation. Requires editingEnabled. | | Click-and-drag on empty area | Draws a new annotation in activeCategoryId. Requires drawingEnabled. |

Keyboard

The canvas is focusable (tabIndex={0}); click into it once and:

| Key | Result | | ------------------------- | ------------------------------------------------------------------------------------- | | Delete / Backspace | Deletes all selected annotations. Requires editingEnabled. | | Esc | Clears the selection. | | Arrow keys | Nudges the selected annotation(s) by 1 image-pixel. Requires editingEnabled. | | Shift + arrow keys | Nudges by 10 image-pixels. |

Responsive sizing

The image is rendered with max-width: 100%, and a ResizeObserver keeps the overlay canvas in sync with whatever size the layout gives the image. Annotation coordinates are always stored in the image's natural pixel space, so the values you persist are stable regardless of the rendered size or device DPI.

Recipe: replicate the original "accepted / ignored" visual-diff workflow

The previous version of this library hardcoded isAccepted and isIgnored flags. You can recreate that with three categories:

const VISUAL_DIFF_CATEGORIES: Category[] = [
  { id: 'pending',  label: 'Pending',  color: '#fcdda6' },
  { id: 'accepted', label: 'Accepted', color: '#b3e8cd', fillOpacity: 0.7 },
  { id: 'ignored',  label: 'Ignored',  color: '#6464ff' },
]

Reassign an annotation between categories by editing categoryId in your state:

const accept = (id: string) =>
  setAnnotations((prev) =>
    prev.map((a) => (a.id === id ? { ...a, categoryId: 'accepted' } : a))
  )

Run the demo

npm install
npm run example:install   # one-time
npm run example           # starts a Vite dev server at localhost:5173

The demo lives in example/ and imports the component directly from ../src via a Vite alias, so any edit to the library hot-reloads in the browser.

License

MIT