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

@knitkit/runtime

v0.2.0

Published

Runtime-first, bundler-agnostic module federation on native ESM + import maps.

Readme

@knitkit/runtime

Browser core for knitkit — runtime-first, bundler-agnostic module federation on native ESM + import maps.

Zero dependencies. ESM-only. < 5 KB min+gzip.

Public API

import {
  registerRemotes,
  loadRemote,
  negotiateShared,
  injectImportMap,
  getShareInfo,
  validateManifest,
  KnitError,
} from "@knitkit/runtime";

await registerRemotes(
  [
    { name: "checkout", manifest: "/static/federation/checkout/knit.manifest.json" },
    { name: "marketing", manifest: "https://cdn.example.com/marketing/knit.manifest.json" },
  ],
  {
    hostShared: {
      react: {
        version: "18.3.1",
        requiredVersion: "^18.0.0",
        singleton: true,
        url: "/static/shared/react-18.3.1.js",
      },
    },
  },
);

const CartWidget = await loadRemote<React.ComponentType>("checkout/CartWidget");

Bootstrap pattern (IMPORTANT)

Native import maps must be injected before the first module import that resolves through them. The supported pattern is:

<!doctype html>
<html>
  <head>
    <script type="module">
      import { registerRemotes } from "/static/runtime/index.mjs";
      await registerRemotes([
        { name: "checkout", manifest: "/static/federation/checkout/knit.manifest.json" },
      ]);
      // Optional: dynamic-import the rest of your app so the import map is in place.
      await import("/src/main.mjs");
    </script>
  </head>
</html>

Do not do this:

<!-- WRONG: main.mjs may import a module that resolves through the map before the map exists. -->
<script type="module" src="/src/main.mjs"></script>
<script type="module">
  import { registerRemotes } from "/static/runtime/index.mjs";
  await registerRemotes([...]);
</script>

Browser support

  • Chrome 89+, Firefox 108+, Safari 16.4+ — dynamic import map injection.
  • Chrome 127, Firefox 138, Safari 18.4 — import map integrity key (SRI; emitted, enforced in Phase 2).
  • es-module-shims is a documented fallback for older browsers, never the default.

Errors

All errors are coded. Catch KnitError and inspect .code and .suggestion:

| Code | Meaning | | --- | --- | | KNIT_ERR_NEGOTIATION_CONFLICT | No single version satisfies every participant's range and the package is not singleton. | | KNIT_ERR_SINGLETON_CONFLICT | A singleton package has incompatible versions. | | KNIT_ERR_MANIFEST_INVALID | A manifest failed validation. | | KNIT_ERR_LOAD_FAILED | A network or import() error. | | KNIT_ERR_NOT_REGISTERED | loadRemote called for a remote that wasn't registered. | | KNIT_ERR_IMPORT_MAP_INJECTION_FAILED | injectImportMap called outside the browser. |