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

@zudojs/logger

v1.0.0

Published

Structured logging with transports, log levels, and context propagation for Zudojs applications.

Readme

@zudojs/logger

Structured logging with transports, formatters, log levels, secret redaction, and context propagation for Zudojs applications.

Installation

npm install @zudojs/logger

Quick Start

import { createLogger } from "@zudojs/logger";

const logger = createLogger({ name: "api" });

logger.info("Server started", { port: 3000, env: "production" });
logger.error("Connection failed", { error: err.message });

await logger.flush(); // drain in-flight writes before exit

Levels

fatal (0), error (1), warn (2), info (3), debug (4), trace (5). A logger emits every message at or below its configured level; level defaults to info.

Transports

A transport is either a { name, enabled, write, flush?, close? } object or a (entry, context) => void | Promise<void> function. When no transport is configured the logger writes to the console.

Built in: createConsoleLoggerTransport, and the composites createMultiLoggerTransport, createConditionalLoggerTransport and createBufferedLoggerTransport. File and HTTP transports are not included — implement the LoggerTransport interface for those.

transportTimeout (default 10s) bounds every transport write, so a transport that stops responding cannot hang flush() or close().

Flushing

Dispatch completes synchronously when every transport is synchronous. With an asynchronous transport — or with asynchronous: true, which always defers so the caller stays off the transport's critical path — writes are in flight until drained. flush() and close() drain them, so nothing is lost at exit.

Secret redaction

Redaction is on by default. Metadata and context fields whose NAME looks like a secret — password, secret, token, api key, private key, credential, authorization, cookie — are replaced with "[REDACTED]" before the entry reaches any formatter or transport. Nested objects, arrays and getters are all covered.

logger.info("login", { user: "alice", password: "hunter2" });
// metadata: { user: "alice", password: "[REDACTED]" }

createLogger({ redact: { keys: ["ssn"], replacement: "***" } });
createLogger({ redact: { enabled: false } }); // opt out

Log injection

Text-shaped formatters escape control characters in the message, the logger name, metadata keys and values, context values and source locations. A newline or ANSI escape inside attacker-supplied text becomes \n /  rather than forging an extra log record or driving the operator's terminal. The JSON formatter relies on JSON.stringify, which escapes the same characters.

Metadata is normalized before serialization, so circular references ("[Circular]"), BigInt values and functions never make a formatter throw and silently drop the record.

Context

import { createLoggerContext, withLoggerContext } from "@zudojs/logger";

const scoped = logger.withContext(
  createLoggerContext({ requestId: "req-1", metadata: { tenant: "acme" } }),
);
scoped.info("handled"); // metadata carries requestId and tenant

withLoggerContext(logger, createLoggerContext({ traceId }), (scoped) => {
  scoped.info("inside the trace");
});

Child loggers inherit name, level, formatter, transports, metadata and redaction settings: logger.child({ name: "api.db" }).

Formatters

createTextLoggerFormatter, createJsonLoggerFormatter, createCompactLoggerFormatter, createDevelopmentLoggerFormatter, createProductionLoggerFormatter, createStructuredLoggerFormatter.

Pass { colors: true } in the formatter context to colourize the level tag of text output. Colour codes are emitted only around the fixed level name, never around user-supplied text.

Use Cases

  • Application logging
  • Distributed tracing correlation
  • Audit trails
  • Debugging and monitoring