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

@cmd-kit/core

v0.1.4

Published

Framework-agnostic command palette core for cmd+kit

Readme

@cmd-kit/core

npm version Vanilla JS TypeScript License

Core engine for Cmd+kit. Includes headless primitives and framework-free browser runtime (createCommandPalette).

Website: https://cmd-kit.vercel.app/
Docs: https://cmd-kit.vercel.app/docs/getting-started

🌐 Language


🇪🇸 Español

⚡ Instalación

npm install @cmd-kit/core

✅ Qué incluye

  • Modelo de comandos (items, sections, children).
  • Snapshot + fuzzy filtering.
  • Ejecución de comandos (href, callback, navegación).
  • Recientes (recordRecentCommand, resolveRecentCommands).
  • Helpers de tema/mensajes.
  • Soporte de tema simple o dual (theme.light / theme.dark).
  • Runtime vanilla completo: createCommandPalette.
  • Opción reducedMotion para desactivar animaciones de hover/movimiento.

🚀 Opción 1: motor headless

import {
  createCommandSnapshot,
  createResolvedConfig,
  dispatchCommandExecution
} from "@cmd-kit/core";

const config = createResolvedConfig({
  sections: [
    {
      id: "navigation",
      title: "Navigation",
      items: [{ id: "home", title: "Dashboard", href: "/dashboard" }]
    }
  ]
});

const snapshot = createCommandSnapshot(config, "dash");

await dispatchCommandExecution({
  item: snapshot.items[0],
  port: {
    openHref: ({ href }) => window.location.assign(href)
  }
});

🧱 Opción 2: runtime vanilla (sin framework)

import { createCommandPalette } from "@cmd-kit/core";

const palette = createCommandPalette({
  title: "Command menu",
  defaultOpen: false,
  reducedMotion: false,
  recents: { limit: 6, sectionTitle: "Recent commands" },
  theme: {
    light: { accentColor: "#0fa6d8", backgroundColor: "#ffffff" },
    dark: { accentColor: "#35d7ff", backgroundColor: "#0b1116" }
  }
});

// API runtime
palette.setOpen(true);
palette.toggle();
palette.reloadSource();

🛝 Integración desde Playground

Si tu objetivo es core:

  1. Diseña estructura en playground.
  2. Exporta Core (Vanilla JS).
  3. Usa la salida para:
    • createResolvedConfig (headless), o
    • createCommandPalette (runtime vanilla).

🧠 Cuándo usar core

  • Quieres construir tu propia UI.
  • Necesitas integración sin React/Vue/Preact/Astro.
  • Quieres reutilizar solo motor + ejecución + filtros.

🤝 Contribuciones

PRs bienvenidas, especialmente en rendimiento, estabilidad del motor y extensibilidad.


🇬🇧 English

⚡ Install

npm install @cmd-kit/core

✅ What you get

  • Command model (items, sections, children).
  • Snapshot + fuzzy search pipeline.
  • Command execution primitives.
  • Recents helpers.
  • Theme/messages helpers.
  • Single or dual theme mode support (theme.light / theme.dark).
  • Full framework-free runtime via createCommandPalette.
  • reducedMotion option to disable hover/motion animations.

🚀 Option 1: headless engine

Use createResolvedConfig + createCommandSnapshot + dispatchCommandExecution.

🧱 Option 2: vanilla runtime

Use createCommandPalette to mount a ready runtime without framework dependencies.

🛝 Playground integration

Export Core (Vanilla JS), then map output into either headless config or createCommandPalette.

🤝 Contributing

PRs are welcome, especially around performance, core stability, and API extension points.


Portfolio: Fr4n0m → https://codebyfran.es