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

@leaven-graphql/context

v0.1.0

Published

Context management for Leaven GraphQL

Downloads

173

Readme

@leaven-graphql/context

Request context management for Leaven using AsyncLocalStorage.

Installation

bun add @leaven-graphql/context

Quick Start

import { createRequestContext, ContextStore } from '@leaven-graphql/context';

// Create context from an HTTP request
const context = createRequestContext(request, {
  includeHeaders: true,
  includeIp: true,
});

console.log(context.requestId);   // Unique request ID
console.log(context.url);         // Request URL
console.log(context.method);      // HTTP method

Features

Request Context

Create context from HTTP requests:

import { createRequestContext, RequestContext } from '@leaven-graphql/context';

const context = createRequestContext(request, {
  includeHeaders: true,
  includeIp: true,
});

// Properties available
context.requestId;    // Unique ID for the request
context.url;          // Request URL
context.method;       // HTTP method (GET, POST, etc.)
context.headers;      // Request headers (Map)
context.ip;           // Client IP address
context.userAgent;    // User agent string
context.startTime;    // Request start timestamp

Context Store

Use AsyncLocalStorage for request-scoped context:

import { ContextStore, createContextStore } from '@leaven-graphql/context';

const store = createContextStore();

// Run code with context
store.run({ userId: '123', role: 'admin' }, async () => {
  // Context is available anywhere in this async scope
  const context = store.getContext();
  console.log(context.userId); // '123'

  // Works in nested function calls
  await someNestedFunction();
});

async function someNestedFunction() {
  const context = store.getContext();
  console.log(context.role); // 'admin'
}

Context Builder

Build complex contexts with the fluent API:

import { ContextBuilder, createContextBuilder } from '@leaven-graphql/context';

const context = createContextBuilder()
  .withRequest(request)
  .withUser(authenticatedUser)
  .withDatabase(dbConnection)
  .withLogger(logger)
  .withTracing(traceId)
  .build();

Custom Context Types

Extend the base context with your own types:

import type { BaseContext, ContextExtension } from '@leaven-graphql/context';

interface AppContext extends BaseContext {
  user: User | null;
  db: Database;
  cache: CacheClient;
  permissions: string[];
}

function createAppContext(request: Request): AppContext {
  return {
    requestId: crypto.randomUUID(),
    startTime: Date.now(),
    user: null,
    db: database,
    cache: cacheClient,
    permissions: [],
  };
}

Integration with HTTP

import { createServer } from '@leaven-graphql/http';
import { createRequestContext } from '@leaven-graphql/context';

const server = createServer({
  schema,
  context: async (request, graphqlRequest) => {
    const baseContext = createRequestContext(request);
    const user = await authenticateRequest(request);
    const db = await getDatabase();

    return {
      ...baseContext,
      user,
      db,
    };
  },
});

API Reference

createRequestContext

function createRequestContext(
  request: Request,
  options?: RequestContextConfig
): RequestContext;

interface RequestContextConfig {
  includeHeaders?: boolean;
  includeIp?: boolean;
  customProperties?: Record<string, unknown>;
}

ContextStore

class ContextStore<T> {
  // Run code with the given context
  run<R>(context: T, callback: () => R): R;

  // Get the current context (throws if none)
  getContext(): T;

  // Get the current context or undefined
  getContextOrNull(): T | undefined;

  // Check if context is available
  hasContext(): boolean;
}

ContextBuilder

class ContextBuilder<T extends BaseContext> {
  withRequest(request: Request): this;
  withUser<U>(user: U): this;
  withDatabase<D>(db: D): this;
  withLogger<L>(logger: L): this;
  withTracing(traceId: string): this;
  with<K extends string, V>(key: K, value: V): this;
  build(): T;
}

License

Apache 2.0 - Pegasus Heavy Industries LLC