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-impact-nova

v1.1.0

Published

Scaffold a Vite + React app with Impact Nova, Tailwind, Layout, AG Grid, and Charts pre-wired

Readme

create-impact-nova

Scaffold a ready-to-run Vite + React app with Impact Nova pre-wired:

  • Tailwind + Impact Nova preset + Manrope fonts
  • Layout shell (sidebar, header, router outlet)
  • Premium page chromePageShell, PageStickyHeader, EmptyStateView, SummaryMetricCard (Item Smart parity)
  • React Router + Home welcome page
  • Shared primitives: PageStickyHeader, DataTable density/viewport helpers, AG Grid cell registry, filter guard
  • Zustand stores — global UI, filters, notifications, KPI order (+ recipe session/preferences stores)
  • Shell extras — command palette, notification panel, drag-sort KPI rail (@dnd-kit)
  • AG Grid license hook + stacked Toaster
  • Feature modules from six recipes — driven by your prompt, not baked into the base template
  • Org AI setuptemplate/docs/AGENT_GUIDE.md, template/docs/AI_IDE_SETUP.md, .mcp.json / .cursor/mcp.json (Cursor, Windsurf, Claude Code)

See docs/TEMPLATE_STANDARDS.md and MCP resource impact-nova://ia-design-language (Figma-trained IA designer guide).

Usage

npm create impact-nova@latest my-app
cd my-app
npm run dev

From the impact-nova monorepo (links local impact-nova via file: automatically):

npx create-impact-nova my-app

From npm (uses impact-nova@^2.0.5 from the registry):

npx create-impact-nova my-app --from-npm

Other options:

npx create-impact-nova my-app --dir ./apps/my-app --skip-install
npx create-impact-nova my-app --link-monorepo   # force file: link when monorepo is present

Recipes (modules)

Pass modules when scaffolding programmatically or via MCP scaffold_impact_nova_app:

| Recipe | Use when | |--------|----------| | filtered-workspace | Planning / workflow: empty → FilterPanel → KPI + grid | | data-catalog | FilterStrip + DataTable list | | dashboard | KPI cards + composable chart (DashboardChartPanel) | | wizard-flow | Multi-step reporting wizard | | scenario-comparison | Simulation results variance panel | | product-config-flow | Item details tabs + add-placeholder + map-sku |

import { scaffoldProject } from 'create-impact-nova';

scaffoldProject({
  projectName: 'retail-planning',
  modules: [
    {
      recipe: 'filtered-workspace',
      slug: 'retail-planning',
      title: 'Retail Planning',
    },
  ],
});

MCP (Cursor, Windsurf, Claude Code)

Works in any MCP client — not Cursor-only. Commit .mcp.json / .cursor/mcp.json from the template so the org shares one server config.

Org rollout: template/docs/AI_IDE_SETUP.md. Portable rules: template/docs/AGENT_GUIDE.md.

In Cursor with impact-nova-mcp, ask:

Scaffold a retail planning prototype with Sales / Inventory / Receipts tabs

The agent calls scaffold_impact_nova_app with modules[] derived from your prompt.

Programmatic API

import { scaffoldProject, SCAFFOLD_RECIPES } from 'create-impact-nova';

scaffoldProject({
  projectName: 'my-app',
  targetDirectory: './my-app',
  skipInstall: true,
  usePublishedPackages: true,
});