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

create-exxat-app

v0.1.2

Published

Scaffold a Next.js app on the Exxat DS (@exxatdesignux/ui).

Readme

create-exxat-app

Scaffold a new Next.js app on the Exxat DS (@exxatdesignux/ui) in one command.

Quick start

pnpm create exxat-app my-app
cd my-app
pnpm dev

Works with every modern package manager — pick whichever you use, the scaffolder auto-detects it and runs the matching install:

npm  create exxat-app my-app
yarn create exxat-app my-app
bun  create exxat-app my-app

Or invoke directly:

npx create-exxat-app my-app

What you get

  • Next.js 16 + React 19 + Tailwind v4 starter.
  • The full Exxat DS hub stack pre-wired (ListPageTemplate, DataTable, HubTable, TablePropertiesDrawer, KeyMetrics, PageHeader, …).
  • A reference Library hub at /library/all (placeholder data — rename / repurpose it to whatever your product needs).
  • A /columns showcase route documenting every reusable column cell.
  • Cursor skills + pattern docs vendored under cursor-rules/, cursor-skills/, patterns/, and handbook/ so AI agents in your repo can read the same DS guidance the source repo uses.

Options

create-exxat-app [target-directory] [options]

| Option | Description | | --- | --- | | --force | Allow scaffolding into a non-empty directory. Existing files are not overwritten unless the template ships the same path. | | --no-install | Skip the dependency install step. Useful in CI or sandboxed setups. | | -h, --help | Show CLI help. |

Examples:

create-exxat-app my-app
create-exxat-app .            # scaffold into the current directory
create-exxat-app ../sandbox --force --no-install

How it works

create-exxat-app is a thin discovery package — it exists so <package-manager> create exxat-app … resolves to a real package on npm. The actual scaffolder, template, and version-pinning logic live in @exxatdesignux/ui. Installing this package pulls @exxatdesignux/ui as a peer; the binary simply delegates to @exxatdesignux/ui/bin/init.mjs.

License

UNLICENSED — proprietary to Exxat Design.