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

@webring-kit/core

v0.1.1

Published

Core validation, navigation, source adapters, and cache utilities for Webring Kit.

Readme

@webring-kit/core

Framework-independent core utilities for Webring Kit.

@webring-kit/core contains the shared logic used by the Web Components, framework adapters, and CLI. It does not render UI and can be used from Node.js tooling or browser bundlers.

What it provides

  • Ring manifest validation.
  • URL normalization and safe URL handling.
  • Current-site resolution.
  • Previous, next, and random site navigation.
  • Ring source adapters for JSON URLs, GitHub contents, and inline manifests.
  • Memory and browser cache helpers.
  • TypeScript types for ring manifests and sites.

Install

pnpm add @webring-kit/core
npm install @webring-kit/core

Basic usage

import {
  NavigationService,
  RingValidator,
  normalizeSiteUrl
} from "@webring-kit/core";

const manifest = {
  version: 1,
  id: "indie-devs",
  name: "Indie Devs Webring",
  sites: [
    {
      id: "alice",
      title: "Alice's Notes",
      url: "https://alice.example.com"
    },
    {
      id: "bob",
      title: "Bob Builds",
      url: "https://bob.example.com"
    }
  ]
};

const ring = new RingValidator().validate(manifest);
const navigation = new NavigationService(ring);

const current = navigation.resolveCurrentSite("https://alice.example.com");
const next = navigation.getNextSite("https://alice.example.com");
const previous = navigation.getPreviousSite("https://alice.example.com");
const normalized = normalizeSiteUrl("https://alice.example.com/");

Runtime compatibility

This package is ESM-only.

It is intended for:

  • Node.js tooling.
  • Browser bundlers such as Vite, Next.js, Astro, and SvelteKit.
  • Internal use by @webring-kit/element, @webring-kit/react, @webring-kit/next, and @webring-kit/cli.

Security model

The core validator should reject unsupported URL schemes and malformed manifests. Consumer code should still treat ring manifests as untrusted external data and render manifest text with safe text APIs rather than HTML injection.

Related packages

  • @webring-kit/element for native Web Components.
  • @webring-kit/react for React wrappers.
  • @webring-kit/next for Next.js helpers.
  • @webring-kit/cli for manifest validation and maintenance commands.
  • @webring-kit/schemas for JSON Schema files.