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

@domternal/vanilla

v1.0.1

Published

Polished DOM components for the Domternal rich-text editor. Use in Astro, Svelte, Solid, plain HTML.

Readme

@domternal/vanilla

Version MIT License

Framework-free DOM components for the Domternal editor. Most are classes you instantiate against a host element: DomternalEditor, DomternalToolbar, DomternalBubbleMenu, DomternalFloatingMenu, and DomternalEmojiPicker. DomternalNotionColorPicker is the exception: it takes only an options object and resolves its own .dm-editor host from the editor. Every class extends EventTarget, exposes plain getters and mutator methods, dispatches CustomEvents for state changes, and tears down with an idempotent destroy(). Use it in Astro, Svelte, Solid, Lit, Web Components, or plain HTML - anywhere without a framework runtime.

Links

Website    •    Documentation    •    Live examples

Install

pnpm add @domternal/core @domternal/theme @domternal/vanilla

@domternal/core (>=1.0.0) is a peer dependency. @domternal/theme supplies the editor styles (import it once in your app).

Usage

import { StarterKit } from '@domternal/core';
import {
  DomternalEditor,
  DomternalToolbar,
  DomternalBubbleMenu,
} from '@domternal/vanilla';
import '@domternal/theme';

const toolbarEl = document.getElementById('toolbar')!;
const editorEl = document.getElementById('editor')!;
const bubbleEl = document.getElementById('bubble')!;

const dm = new DomternalEditor(editorEl, {
  extensions: [StarterKit],
  content: '<p>Hello world</p>',
  onUpdate: ({ editor }) => console.log(editor.getHTML()),
});

new DomternalToolbar(toolbarEl, { editor: dm.editor });
new DomternalBubbleMenu(bubbleEl, { editor: dm.editor });

// Reactive-friendly getters:
console.log(dm.htmlContent, dm.isEmpty);

// CustomEvent subscription:
dm.addEventListener('update', () => console.log('content changed'));

// Cleanup (idempotent):
dm.destroy();

The matching mount points:

<div id="toolbar"></div>
<div id="editor" class="dm-editor"></div>
<div id="bubble" class="dm-bubble-menu"></div>

Construction is browser-only: every constructor calls assertBrowser() and throws in SSR. Module-scope imports stay SSR-safe, so gate instantiation behind a client-side entry point (e.g. an Astro <script> block or client:only).

Options

DomternalEditorOptions, the second constructor argument:

| Option | Type | Default | Description | |---|---|---|---| | extensions | AnyExtension[] | [] | Extensions merged on top of DEFAULT_EXTENSIONS. | | history | boolean | true | Whether the built-in History extension is loaded. Turn it off when an extension brings its own undo. | | content | Content | '' | Initial content, HTML string or JSON. | | editable | boolean | true | Whether the editor is editable. | | preset | 'classic' \| 'notion' | 'classic' | 'notion' paints dm-notion-mode on the .dm-editor host and switches preset-aware extensions to their Notion behavior. Create-time only. | | autofocus | FocusPosition | false | Where to place the caret on mount. | | outputFormat | 'html' \| 'json' | 'html' | Format hint for host frameworks comparing controlled content. Does not change editor behavior. |

onCreate, onUpdate, onSelectionChange, onFocus, onBlur, and onDestroy callbacks are accepted alongside them, and the same moments are dispatched on the instance as create, update, selectionchange, focus, blur, and destroy CustomEvents.

Exports

  • DomternalEditor / DomternalEditorOptions - wraps core's Editor, plus DEFAULT_EXTENSIONS (Document, Paragraph, Text, BaseKeymap, History).
  • DomternalToolbar, DomternalBubbleMenu, DomternalFloatingMenu, DomternalEmojiPicker, DomternalNotionColorPicker - the floating UI components.
  • Shared helpers: isBrowser, assertBrowser, createPluginKey, renderIconInto, resolveIcon, subscribe.