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

@ripl/dom

v1.4.0

Published

DOM utilities and context for Ripl

Readme

@ripl/dom

npm license size

The DOM layer shared by Ripl's browser contexts: element mounting, pointer interaction, a virtual-DOM reconciler and the pan/zoom navigator.

This is an internal dependency. @ripl/canvas, @ripl/svg and @ripl/3d install it for you, and @ripl/web re-exports the parts you would reach for. Install it directly only when writing a custom browser context.

Features

  • DOMContext — the abstract base every browser context extends, adding element mounting, resize observation and pointer interaction to @ripl/core's Context.
  • Pointer plumbing — hit tests are buffered to a frame, drags are tracked from press to release, and the click that ends a drag is suppressed, so mouseenter/mousemove/click/dragstart/drag/dragend arrive on the right element.
  • DOMNavigator — turns real wheel, pointer and touch gestures into the base Navigator's pan, zoom and brush commands: drag to pan, wheel or pinch to zoom toward the pointer, shift-drag to brush. It feature-detects its host element, so a non-DOM context declines to attach instead of crashing.
  • Virtual DOM reconcilerreconcileNode diffs a virtual tree against real nodes, creating, updating and removing only what changed. This is what keeps the SVG context's per-frame DOM writes proportional to the change rather than to the scene.
  • Canvas exportcreateCanvasExport snapshots any HTMLCanvasElement (2D, WebGL or WebGPU) into a ContextExport, tracking object URLs so release() can revoke them.
  • Listener helpersonDOMEvent and onDOMElementResize return disposables, so teardown is one call.

Installation

# npm
npm install @ripl/dom

# yarn
yarn add @ripl/dom

# pnpm
pnpm add @ripl/dom

Quick start

import {
    createNavigator,
} from '@ripl/dom';

import {
    createContext,
    createScene,
} from '@ripl/web';

const context = createContext('.mount-element');
const scene = createScene(context);

const navigator = createNavigator(context, {
    interactions: true,
});

navigator.on('change', () => scene.render());

createNavigator and DOMNavigator are re-exported by @ripl/web, so a browser project never imports this package for them.

Key API

| Export | What it does | | --- | --- | | DOMContext | Base class for a browser rendering context | | createNavigator / DOMNavigator | Wheel, pointer and touch gestures driving pan, zoom and brush | | reconcileNode / createVNode / ensureGroupPath | The virtual-DOM reconciler behind the SVG context | | createCanvasExport | Builds a ContextExport from a canvas element | | onDOMEvent / onDOMElementResize | Disposable DOM listener helpers |

Related packages

  • @ripl/web — the browser entry point, and what most projects should install
  • @ripl/canvas / @ripl/svg — the contexts built on DOMContext
  • @ripl/core — the context, element and navigator abstractions this layer extends

Documentation

Guides and the full API reference are at ripl.run/docs/core.

License

MIT