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

@logbrew/next

v0.1.0

Published

Next.js App Router helpers for the public LogBrew JavaScript SDK.

Downloads

89

Readme

@logbrew/next

Next.js App Router helpers for the public LogBrew JavaScript SDK.

This package is intentionally thin. It creates server-side LogBrew clients, wraps App Router Route Handlers, captures successful route requests and thrown route errors, and still keeps manual event creation available through the route helpers.

Install

npm install @logbrew/sdk @logbrew/next next react react-dom
pnpm add @logbrew/sdk @logbrew/next next react react-dom

App Router Route Handler

// app/api/logbrew/route.js
import { RecordingTransport } from "@logbrew/sdk";
import { withLogBrewRouteHandler } from "@logbrew/next";

export const runtime = "nodejs";

export const POST = withLogBrewRouteHandler(
  async (_request, _context, { client }) => {
    client.log("evt_log_001", "2026-06-02T10:00:03Z", {
      message: "worker started",
      level: "info",
      logger: "job-runner"
    });

    return Response.json(JSON.parse(client.previewJson()));
  },
  {
    serverApiKey: "LOGBREW_SERVER_API_KEY",
    spanIdFactory: () => "b7ad6b7169203331",
    transport: RecordingTransport.alwaysAccept()
  }
);

Use serverApiKey directly for local server examples, or set LOGBREW_SERVER_API_KEY in your server environment and omit it. apiKey and LOGBREW_API_KEY are still accepted for compatibility with lower-level SDK examples, but Next.js Route Handlers should use server-side keys only. Use the Browser, React, Vue, Svelte, Angular, or React Native packages for frontend clientKey setup.

By default, successful Route Handler responses are captured after your handler returns. When the incoming Request has a valid W3C traceparent header, request capture records a LogBrew span that continues the incoming trace. Requests without traceparent, or with a malformed header, fall back to a request log event so bad client headers do not break your route. Use captureRequests: false when a route should only flush manual events, use spanIdFactory when tests or edge runtimes need deterministic child span IDs, and use onCaptureError to observe telemetry delivery failures without letting observability own the route response.

Automatic route error events record the method and pathname, but omit query strings by default. Pass includeSearchParams: true only when query capture is intentional and safe for the route.

The wrapper expects App Router Route Handlers that return standard Response objects. It does not call NextResponse.next() and does not use the deprecated middleware filename. For Next.js 16 request interception, use the framework's proxy.js convention separately and keep LogBrew event creation in server-side route code.

Client Helper

import { createLogBrewNextClient } from "@logbrew/next";

const client = createLogBrewNextClient({
  serverApiKey: "LOGBREW_SERVER_API_KEY",
  sdkName: "my-next-app",
  sdkVersion: "0.1.0"
});

Packaged Examples

After install, these commands are available from a consumer app:

node node_modules/@logbrew/next/examples/index.mjs --help
node node_modules/@logbrew/next/examples/index.mjs --list
node node_modules/@logbrew/next/examples/index.mjs readme-example
node node_modules/@logbrew/next/examples/index.mjs real-user-smoke
node node_modules/@logbrew/next/examples/index.mjs
npm --prefix node_modules/@logbrew/next/examples run help
npm --prefix node_modules/@logbrew/next/examples run list
npm --prefix node_modules/@logbrew/next/examples run readme-example
npm --prefix node_modules/@logbrew/next/examples run real-user-smoke

The default launcher path runs real-user-smoke.