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

@shipeasy/sdk

v2.2.0

Published

Shipeasy SDK — feature gates, runtime configs, experiments, and metrics for the Shipeasy hosted service.

Readme

@shipeasy/sdk

Feature gates, runtime configs, experiments, and metrics for the Shipeasy hosted service.

Source-available under the Shipeasy-SAL 1.0. Use it freely as a client of Shipeasy. Don't use it to build a competing service.

Install

npm install @shipeasy/sdk
# or
pnpm add @shipeasy/sdk

For React projects use @shipeasy/sdk-react which wraps this package with a <ShipeasyProvider> and hooks.

Quickstart — browser

import { FlagsClientBrowser } from "@shipeasy/sdk/client";

const client = new FlagsClientBrowser({
  sdkKey: process.env.NEXT_PUBLIC_SHIPEASY_CLIENT_KEY!,
});

await client.identify({ user_id: "user-123", plan: "pro" });

if (client.getFlag("new_checkout")) {
  // ship it
}

const cfg = client.getConfig<{ max_uploads: number }>("upload_limits");
const { params } = client.getExperiment("hero_cta", {
  primary_label: "Sign up",
});

identify() automatically merges browser context (locale, timezone, path, referrer, screen_*, user_agent) and a persisted anonymous_id into the payload — so gate rules can target by locale or holdouts can hash anonymous visitors out of the box.

Quickstart — server (Node, Cloudflare Worker, Deno)

import { FlagsClient } from "@shipeasy/sdk/server";

const client = new FlagsClient({ sdkKey: process.env.SHIPEASY_SERVER_KEY! });

const cfg = await client.getConfig("plan_limits", { user_id: "u-1" });

Drop-in <script> loader (no bundler)

<script
  src="https://cdn.shipeasy.ai/sdk/loader.js"
  data-sdk-key="sdk_client_..."
  data-user-id="user-123"
  data-user-email="[email protected]"
  data-user-plan="pro"
  data-attrs='{"country":"US"}'
  defer
></script>
<script>
  await window.shipeasy.ready;
  if (window.shipeasy.getFlag("new_checkout")) { /* … */ }
</script>

The loader IIFE is published to a public R2 bucket on every release and cached for 1y at loader-vX.Y.Z.js (immutable) plus a rolling 5-minute loader.js.

Devtools overlay

Press Shift+Alt+S on any page running the SDK (or append ?se=1 to the URL). The Shipeasy devtools panel mounts in a Shadow DOM overlay and lets you flip every gate / config / experiment / translation for the current session only — handy for QA, demos, and bug repro.

Documentation

Full docs at docs.shipeasy.ai. API surfaces covered there: targeting rules, holdouts, sequential stats, custom metrics, Slack digests, OAuth/SSO, Claude/MCP integration.

License

Shipeasy-SAL 1.0 — source-available, non-commercial-use, permitted for use as a Shipeasy client.