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

@myst-theme/anywidget

v1.1.4

Published

NodeRenderers for `anywidget` directives

Downloads

366

Readme

@myst-theme/any-widget

Extension interface and NodeRenderer following the any-widget interfaces for embedding interactive widgets in MyST Markdown documents.

Usage in MyST Markdown projects

The anywidget directive allows you to embed interactive widgets directly in your MyST markdown files. These widgets are ES modules that can be loaded from a URL and initialized with JSON data.

Basic Usage

Using the mystmd you can add AnyWidgets using the following directive.

To include your widget, provide a reachable URL to the JS module, and optional css file.

:::{anywidget} https://example.com/widget.mjs
:css: https://example.com/widget-styles.css
:class: border rounded p-4
{
"value": 42,
"name": "My Widget"
}
:::

Directive Options

  • class: Tailwind CSS classes to apply to the container element
  • css: URL to a CSS stylesheet to load for the widget
  • static: URL, File path, folder path, or glob pattern for static files to make available to the module

Usage for developers and theme builders

This package provides two main entry points for different use cases:

  1. Directive (Node/CLI context): A MyST directive specification for parsing any:widget and any:bundle directives in markdown
  2. React Renderers (React context): React components for rendering AnyWidget components in the browser

Installation

npm install @myst-theme/anywidget

Adding Renderers to a Theme

If you're building a theme or React application that renders MyST documents, you'll need to add the React renderers to display the widgets.

Import the renderers:

import { ANY_RENDERERS } from '@myst-theme/anywidget';
import { mergeRenderers } from '@myst-theme/providers';
import { Document } from '@myst-theme/providers';

function MyDocument({ ast }) {
  return (
    <Document
      ast={ast}
      renderers={mergeRenderers([defaultRenderers, ANY_RENDERERS])}
    />
  );
}

The renderers will automatically:

  • Load the ES module from the specified URL
  • Initialize the widget with the provided JSON data
  • Handle CSS stylesheets (with shadow DOM support)
  • Display error messages if the widget fails to load

TypeScript Types

The package exports TypeScript types for type safety:

import type { AnyWidgetDirective } from '@myst-theme/anywidget';

Contributing

This package is part of the myst-theme monorepo. See the main repository for contribution guidelines.

License

MIT