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

@ocubist/da-file-transport

v0.3.1

Published

File transport plugin for @ocubist/diagnostics-alchemy. Node.js only — writes newline-delimited JSON log entries to disk via SonicBoom.

Downloads

513

Readme

@ocubist/da-file-transport

File transport plugin for @ocubist/diagnostics-alchemy.

Writes newline-delimited JSON log entries to disk via SonicBoom — buffered async writes with a safe synchronous flush on process exit.

Node.js only. Throws immediately if called in a browser environment.

npm install @ocubist/da-file-transport

Usage

Pass the result of createFileTransport as a transport to useLogger:

import { useLogger } from "@ocubist/diagnostics-alchemy";
import { createFileTransport } from "@ocubist/da-file-transport";

const log = useLogger({
  transports: [
    createFileTransport({ path: "logs/app.log" }),
  ],
});

log.info("Server started", { payload: { port: 3000 } });
// → logs/app.log receives: {"level":"info","time":1234567890,"message":"Server started","payload":{"port":3000}}

Combine with console output

The console transport is included by default. The file transport runs alongside it — each manages its own minLevel independently:

const log = useLogger({
  where: "api",
  console: { minLevel: "debug" },       // see everything in the terminal
  transports: [
    createFileTransport({
      path: "logs/api.log",
      minLevel: "info",                  // only info and above go to file
    }),
  ],
});

File only (no console output)

const log = useLogger({
  console: { enableTransport: false },
  transports: [
    createFileTransport({ path: "logs/app.log" }),
  ],
});

Multiple files

const log = useLogger({
  transports: [
    createFileTransport({ path: "logs/app.log",    minLevel: "info"  }),
    createFileTransport({ path: "logs/errors.log", minLevel: "error" }),
  ],
});

Options

createFileTransport(options: FileTransportOptions): Transport

| Option | Type | Default | Description | |---|---|---|---| | path | string | — | File path to write to. Parent directories are created automatically. | | sync | boolean | false | Write synchronously on every entry. Safer under sudden process termination, slower under high log volume. | | minLevel | LogLevel | "info" | Minimum log level to write. Entries below this level are skipped. |

The returned Transport object satisfies the Transport interface from @ocubist/diagnostics-alchemy:

interface Transport {
  write(entry: LogEntry): void;
  minLevel?: LogLevel;
}

How it works

  • Uses SonicBoom internally — a high-performance async write stream designed for logging.
  • Each LogEntry is serialized as a single JSON line (\n-delimited).
  • Registers process.once("exit" | "SIGINT" | "SIGTERM") handlers to flush and close the stream before the process exits, preventing log loss.
  • Throws at call time (not log time) if a window global is detected — fail fast, not silently.

Requirements

  • Node.js ≥ 20
  • @ocubist/diagnostics-alchemy ≥ 0.3.0 (peer dependency)