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

datocms-plugin-untitledui-icon-picker

v0.0.7

Published

DatoCMS field editor that lets editors pick an icon from the Untitled UI icon set and stores the icon name as a string.

Readme

DatoCMS plugin: Untitled UI icon picker

DatoCMS npm GitHub Workflow Status (with branch) NPM Powered By NovemberFive

A DatoCMS field editor plugin that lets editors pick an icon from the Untitled UI icon set and stores the icon name as a plain string. Pair it with a frontend that looks the chosen name up against @untitledui/icons to render the matching component.

Head ups

  • The plugin stores the icon name as a string (e.g. Star01). It does not store SVG markup, props, or sizing. Your frontend is responsible for resolving the name to a React component.
  • Designed for single-string fields only (fieldTypes: ['string']).
  • Bundled icon list is generated from @untitledui/icons at build time. If your frontend is pinned to a different version of @untitledui/icons, picked names may not exist there — keep the versions in lockstep.

Installation

Install via the DatoCMS marketplace:

  1. In your DatoCMS project, go to Settings → Plugins → Add new plugin.
  2. Search for Untitled UI icon picker and install it.

Then, on any single-line string field where you want the picker:

  1. Open the field's settings.
  2. Under Presentation, set the editor to Untitled UI icon picker.
  3. Save.

Usage

In your frontend, resolve the stored name back to an icon component:

import * as Icons from '@untitledui/icons';
import type { FC, SVGProps } from 'react';

type IconComponent = FC<SVGProps<SVGSVGElement> & { size?: number }>;
const registry = Icons as unknown as Record<string, IconComponent>;

export const Icon = ({ name, size = 24 }: { name: string; size?: number }) => {
  const Cmp = registry[name];
  if (!Cmp) return null;
  return <Cmp size={size} />;
};

Contributing

  • Reporting a bug: Open an issue explaining your setup and the bug you're encountering.
  • Suggesting an improvement: Open an issue explaining your improvement or feature so we can discuss it.
  • Submitting code changes: For small fixes, open a pull request with a description of your changes. For large changes, please first open an issue so we can discuss the approach.

Development

nvm use
npm install
npm run dev      # vite dev server on :5173
npm run build    # builds dist/ — what gets shipped to the marketplace
npm run lint
npm run typecheck

To test the plugin against a real DatoCMS project before publishing, add it as a private plugin in that project's settings pointing at your local dev server URL.

Releases are cut from main via the Release GitHub Action (workflow_dispatch), which uses release-it to bump the version, generate CHANGELOG.md, tag, and npm publish. The DatoCMS marketplace picks up new versions automatically within an hour.

License

MIT © November Five