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

@alienfishconsulting/core-context

v1.1.0

Published

Strongly typed, functional AsyncLocalStorage wrapper with context propagation for Node.js and Express apps

Readme

@alienfishconsulting/core-context

npm version License Node Version

CI codecov

Strongly typed, functional AsyncLocalStorage wrapper for managing request-scoped context in Node.js applications.


✨ Features

  • 🔒 Immutable RequestContext model for tracing and auditing
  • 🧠 Type-safe accessors for contextual fields (e.g., requestId, userId)
  • 🔁 Async context propagation across call stacks
  • 📥 Header integration for tracing across services
  • 🧪 CI-enforced test coverage with Vitest & Nx
  • ⚙️ Framework-agnostic (no Express dependency)

📦 Installation

  pnpm add @alienfishconsulting/core-context

Requires Node.js ≥18.

🧱 Context Model

The RequestContext defines a consistent schema across async boundaries:

interface RequestContext {
  requestId: string;
  correlationId: string;
  userId?: string;
  accountId?: string;
  transactionId?: string;
}

All fields are immutable and meant to persist across the request lifecycle.

🚀 Quick Start

import {
  initWithDefaultContext,
  getContext,
  getContextField,
  runWithContext
} from '@alienfishconsulting/core-context';

initWithDefaultContext(() => {
  const ctx = getContext();
  console.log('Request ID:', ctx?.requestId);
});

Or use a custom context:

const context = {
  requestId: 'abc123',
  correlationId: 'xyz456',
};

runWithContext(context, () => {
  // context is now available inside this function
});

📥 Working with HTTP Headers

import { extractContextFromHeaders, updateContextFromHeaders } from '@alienfishconsulting/core-context';

const headers = {
  'x-request-id': 'abc123',
  'x-user-id': 'user789',
};

updateContextFromHeaders(headers);

// Later...
const userId = getContextField('userId');

🔧 API Overview

| Function |Description | |--|--| | runWithContext(ctx, fn) | Runs fn with the given context | | initWithDefaultContext(fn) | Auto-generates requestId/correlationId | | getContext(fallback?: boolean) | Retrieves the current context | | assertContext() | Returns context or throws if missing | | bind(fn) | Returns a function bound to the current context | | extractContextFromHeaders(headers) | Builds a context from header values | | updateContextFromHeaders(headers) | Extracts + applies context to storage | | getContextField(key) | Retrieves a specific field from the context |

✅ Best Practices

  • Always call runWithContext() at the top level of async workflows

  • Use bind() when passing callbacks to preserve context

  • Avoid mutating context values — treat them as read-only

  • Integrate context extraction in your HTTP layer (e.g., middleware or handlers)

🧪 Testing

This package is managed with Nx and uses Vitest for testing.

pnpm nx test core-context
  • ✅ 80% coverage required

  • 🎯 100% coverage target

  • CI will fail if coverage is insufficient

🛠 Project Structure

  core-context/
  ├── src/
  │   ├── accessors.ts      # Context getters and safety checks
  │   ├── headers.ts        # HTTP header integration
  │   ├── lifecycle.ts      # runWithContext(), bind(), initWithDefaultContext()
  │   ├── storage.ts        # Shared AsyncLocalStorage instance
  │   └── types.ts          # RequestContext schema

🧩 Related Projects

This package is part of the @alienfishconsulting/core monorepo — a collection of modular, enterprise-grade TypeScript utilities.

📄 License

MIT

© Terry "Lee" Allen, Jr