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

@metaboliccode-dev/widget

v0.2.13

Published

Publishable React library: shell layout, side navigation, lazy-loaded tabbed dashboard views, optional practitioner/patient simulation, token-based theming (`MetabolicDashboardConfig` → CSS variables), HTTP-backed default tabs (built-in API base URL and A

Readme

@metaboliccode-dev/widget

Publishable React library: shell layout, side navigation, lazy-loaded tabbed dashboard views, optional practitioner/patient simulation, token-based theming (MetabolicDashboardConfig → CSS variables), HTTP-backed default tabs (built-in API base URL and API key gate), and a standalone iframe build for embedding.

Requirements

  • Node.js and npm
  • React 18+ / react-dom 18+ (peer dependencies)

Development

npm install
npm run dev:iframe

Runs the iframe embed entry locally (see vite.config.iframe.ts).

Scripts

| Command | Description | | --- | --- | | npm run build | Library ESM + CSS + declarations (dist/) and iframe bundle (dist-iframe/) | | npm run build:lib | Library only | | npm run build:iframe | Iframe bundle only | | npm run preview:iframe | Preview built iframe | | npm run typecheck | tsc on src/ | | npm run test / npm run test:run | Vitest runner (vitest.config.ts). The checked-in suite covers request headers, bulk report availability, suggested products mapping, and disabled side-menu behavior. See Development → Testing. | | npm run lint / npm run lint:fix | Biome | | npm run docs:api | TypeDoc API docs |

Layout

| Path | Role | | --- | --- | | src/ | Library source (MetabolicDashboard, tabs, branding, API mappers) | | src/public/ | Default logos, triad icons, and placeholders bundled with the library | | dist/ | Published ESM library output | | dist-iframe/ | Static iframe app after npm run build:iframe |

Documentation

| Document | Description | |----------|-------------| | docs/ | Documentation index | | Installation | Step-by-step guide to install in any project | | Quick Start | Minimal setup to render the dashboard | | API Reference | Props, built-in tabs, simulation, exports | | Configuration & Theming | Config shape, CSS variables, branding | | HTTP API | Report pages endpoint contract and DTO mappers | | Iframe Embed | Standalone iframe build and config delivery | | Development | Local setup, testing, building, publishing |

Quick install

Published as a public package on npmjs.org — no authentication needed.

npm install @metaboliccode-dev/widget

See Installation for framework-specific notes and troubleshooting.

Quick usage

import {
  MetabolicDashboard,
  METABOLIC_DASHBOARD_STUB_API_KEY,
} from "@metaboliccode-dev/widget";
import "@metaboliccode-dev/widget/styles.css";

export function App() {
  return (
    <div className="h-screen">
      <MetabolicDashboard
        apiKey={METABOLIC_DASHBOARD_STUB_API_KEY}
        reportHttpConfig={{ apiKey: "mc-prod", userId: "prod-full-user" }}
        sideMenuUserProfile={{ displayName: "User", email: "[email protected]" }}
      />
    </div>
  );
}

The library owns the report-pages API base URL (baked in at build time). Consumers only pass auth — never a baseUrl.

See Quick Start for the dual-key pattern (why apiKey and the custom fetchers both carry credentials).

AG Charts enterprise license

Charts use AG Charts (ag-charts-community + ag-charts-enterprise). The enterprise license key is baked into the published bundle by the manually-triggered GitHub Actions release workflow (the AG_CHARTS_LICENSE_KEY repo secret is passed to the build step). Consumers do not need to do anything — installing the package gives you an unlocked build. See Development → Releasing a new version for the full publishing procedure.