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

@coveo/create-ui

v0.3.0

Published

Scaffold a Coveo UI project (Atomic or Headless) from the official samples.

Readme

@coveo/create-ui

Scaffold a Coveo UI project (Atomic or Headless) from the official ui-kit samples. Every template runs with zero configuration against the sample organization — no credentials, API keys, or search tokens required.

Usage

npm create @coveo/ui@latest my-app --template headless-search-react

Or run without arguments for an interactive prompt:

npm create @coveo/ui@latest

pnpm is also supported:

pnpm create @coveo/ui my-app --template headless-search-react

Options

| Option | Description | | ------------------------------ | ------------------------------------------------------------------------------------- | | <project-name> | Directory to create the project in. | | --template <id> | Template to scaffold (skips the interactive prompt). | | --template-version <version> | Headless/Atomic library version (or npm dist-tag) to scaffold (defaults to latest). | | -h, --help | Show usage and the list of available templates. |

Pinning a template version

Samples are versioned in lockstep with the Coveo library they build on (Headless or Atomic), so a sample's version always matches its library's version. By default the CLI scaffolds the latest published version. Pass --template-version to scaffold the sample that matches a specific library version instead:

npm create @coveo/ui@latest my-app --template headless-search-react --template-version 3.2.1

The example above scaffolds the headless-search-react sample built against Headless 3.2.1. Omitting --template-version keeps the default (latest).

Templates

Run npm create @coveo/ui --help for the current list. Templates encode the library, use case, and framework (e.g. headless-search-react). Additional Atomic and vanilla templates are added as their samples become scaffold-ready.

How it works

The CLI downloads the matching sample package from npm (via pacote), renames the project, and installs dependencies with the package manager you invoked it with.

Project metadata

At scaffold time the CLI writes a .coveo/create-ui.json provenance file into the project, recording created-at facts that cannot be reconstructed later.

Only tool and version strings are recorded — no file paths, credentials, or project contents.

{
  "template": "headless-search-react",
  "templateVersion": "3.5.0",
  "createdWith": "[email protected]",
  "createdOn": "2026-07-03T13:41:00.000Z",
  "dependencies": {"@coveo/headless": "4.1.0", "@coveo/atomic": "4.1.0"},
  "node": "22.10.0",
  "packageManager": "pnpm"
}

| Field | Description | | ----------------- | ------------------------------------------------------------------ | | template | CLI-facing template name. | | templateVersion | Version of the sample package the project was created from. | | createdWith | Version of create-ui that scaffolded the project. | | createdOn | ISO 8601 timestamp of when the project was scaffolded. | | dependencies | Versions of the @coveo/* packages, as declared at scaffold time. | | node | Node.js version the CLI ran on. | | packageManager | Package manager that invoked the CLI. |

Writing the file is best-effort — if it fails, scaffolding still succeeds with a warning.