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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@shipfox/node-feature-flag

v0.3.0

Published

A thin wrapper around LaunchDarkly's Node SDK that standardizes initialization, context mapping, and flag access across [Shipfox](https://www.shipfox.io/) Node services.

Readme

Shipfox Feature Flag

A thin wrapper around LaunchDarkly's Node SDK that standardizes initialization, context mapping, and flag access across Shipfox Node services.

What it does

  • initFeatureFlagging(): Initializes a singleton LaunchDarkly client from environment variables and resolves when ready.
  • Typed context helpers: BlankContext, OrganizationContext, UserContext mapped to LaunchDarkly LDContext.
  • Flag getters: getBooleanFeatureFlag, getStringFeatureFlag, getNumberFeatureFlag, getJsonFeatureFlag<T>.
  • Subscriptions: onFeatureFlagChange(key, callback) listens for live updates of a specific flag.
  • Bulk fetch: getAllFeatureFlags(context) returns a list of flag names and values for a context.

Environment variables:

  • LAUNCH_DARKLY_SDK_KEY (required)
  • LAUNCH_DARKLY_BASE_URI (optional; overrides baseUri, streamUri, and eventsUri)

Installation

pnpm add @shipfox/node-feature-flag
# or
yarn add @shipfox/node-feature-flag
# or
npm install @shipfox/node-feature-flag

Usage

import {
  initFeatureFlagging,
  getBooleanFeatureFlag,
  getStringFeatureFlag,
  getNumberFeatureFlag,
  getJsonFeatureFlag,
  onFeatureFlagChange,
  getAllFeatureFlags,
  type Context,
} from "@shipfox/node-feature-flag";

// 1) Initialize once at startup (resolves when the SDK is ready)
await initFeatureFlagging();

// 2) Build a context. Supported shapes:
// - BlankContext: { kind: 'blank' }
// - OrganizationContext: { kind: 'organization', id: string }
// - UserContext: { kind: 'user', id: string, organizationId: string }
const context: Context = {
  kind: "user",
  id: "user-123",
  organizationId: "org-456",
};

// 3) Read flags with sensible typed defaults
const enabled = await getBooleanFeatureFlag("new-dashboard", context, false);
const theme = await getStringFeatureFlag("theme", context, "light");
const sampleRate = await getNumberFeatureFlag("ingest-sample-rate", context, 1);
const payload = await getJsonFeatureFlag<{ variant: string }>(
  "experiment",
  context,
  { variant: "control" }
);

// 4) Subscribe to a single flag's updates
onFeatureFlagChange("new-dashboard", async () => {
  const latest = await getBooleanFeatureFlag("new-dashboard", context, false);
  // react to change
});

// 5) Fetch all flags for a context (excluding LD metadata)
const flags = await getAllFeatureFlags(context);
// -> [{ name: 'flag-key', value: true | 'str' | 123 | {} | null }, ...]

Configure via environment variables before starting your app:

export LAUNCH_DARKLY_SDK_KEY="sdk-123"
# Optional self-hosted / relay proxy base URL
export LAUNCH_DARKLY_BASE_URI="https://ld-relay.internal"