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

@ambiten/logger

v1.0.0

Published

<div style="display: flex; align-items: center;"> <p > <img src="https://raw.githubusercontent.com/AmbitenHQ/ambiten/main/assets/ambiten-mark-192x192.png" width="56" alt="Ambiten" /> </p> <h2> @ambiten/logger</h2> </div>

Readme


Overview

@ambiten/logger provides the structured logging and telemetry layer for the Ambiten ecosystem.

It is designed for runtime-aware systems where logs are not merely developer output, but operational events attached to execution boundaries.

The logger can operate independently inside standard Node.js applications, APIs, workers, queues, GraphQL servers, and serverless environments. Inside the Ambiten runtime, it becomes context-aware and can automatically enrich log entries with request identifiers, tenant metadata, database targets, collection names, runtime metadata, and execution context.

Rather than treating logging as scattered console output, @ambiten/logger treats logs as structured runtime events that can move through transport pipelines, observability systems, metrics tracking, resilience layers, and production debugging workflows.

Installation

npm install @ambiten/logger

Quick Start

import { createLogger, consoleTransport } from "@ambiten/logger";

const logger = createLogger({
  level: "info",
  transports: [
    consoleTransport()
  ]
});

logger.info("Application started");

Structured metadata can be attached directly to log entries.

logger.error("Query failed", {
  tenantId: "tenant-a",
  requestId: "req-001",
  operation: "findOne"
});

The logger keeps metadata structured internally so transports can serialize, batch, forward, or persist logs without reconstructing runtime meaning from formatted strings.

What Ambiten Logger Is

Ambiten Logger is not a console wrapper.

It is a structured telemetry pipeline for runtime execution.

Traditional loggers focus on writing messages. Ambiten Logger focuses on preserving operational meaning as execution moves across requests, middleware, models, workers, transactions, queues, adapters, and distributed infrastructure.

Every emitted log becomes a structured runtime event that can participate in formatting, filtering, buffering, batching, metrics tracking, transport routing, and resilience handling.

Application Runtime
        ↓
Structured Log Entry
        ↓
Transport Pipeline
        ↓
Observability Destination

Structured Logging

Ambiten Logger preserves logs as structured runtime entries.

logger.info("User created", {
  userId: "usr_123",
  tenantId: "tenant-a",
  route: "/register"
});

A structured log entry can preserve fields such as timestamps, severity levels, runtime metadata, source information, execution context, and operational payloads.

This makes logs easier to index, search, filter, aggregate, and correlate inside systems such as Elasticsearch, Loki, OpenSearch, Datadog, CloudWatch, or custom telemetry pipelines.

Text output remains useful during local development, but the internal logging model remains structured.

Context-Aware Logging

When used with the Ambiten runtime, the logger can inherit execution metadata from the active runtime context.

await AmbitenContext.run(
  {
    tenantId: "enterprise-a",
    requestId: "req-992"
  },
  async () => {
    logger.info("Processing request");
  }
);

Logs emitted during that execution boundary can automatically preserve runtime metadata such as tenant identity, request scope, database name, collection name, operation metadata, transaction state, and logger metadata.

This is especially valuable in multi-tenant systems and distributed applications where operational visibility depends on being able to reconstruct execution flow across layers.

Transport Pipeline

Ambiten Logger separates log creation from log delivery.

Applications emit structured runtime events. Transports decide where those events go.

import {
  createLogger,
  consoleTransport,
  createRotatingFileTransporter
} from "@ambiten/logger";

const logger = createLogger({
  json: true,
  transports: [
    consoleTransport(),
    createRotatingFileTransporter({
      filename: "./logs/runtime.log",
      frequency: "daily",
      backupCount: 7,
      compress: true
    })
  ]
});

The transport layer is composable and can support console output, static files, rotating files, buffered delivery, asynchronous batching, HTTP ingestion, Loki, Elasticsearch, and custom infrastructure.

Because every transport receives normalized runtime entries, observability infrastructure can evolve without changing application logging logic.

Metrics and Runtime Signals

The logger can track operational metrics about the logging pipeline itself.

Metrics can expose activity such as processed log volume, transport dispatches, successful writes, buffer flushes, file rotations, dropped logs, and transport errors.

const logger = createLogger({
  enableMetrics: {
    enabled: true,
    logInterval: 60_000
  }
});

These metrics are not application logs. They describe the behavior of the logging infrastructure so teams can understand transport pressure, delivery failures, buffering behavior, and runtime throughput under production workloads.

Resilience

Production logging infrastructure can fail.

Remote endpoints may become unavailable, networks may degrade, filesystems may stall, or observability backends may reject ingestion under pressure.

Ambiten Logger supports resilience patterns that help isolate logging failures from application execution.

const transport = createResilientTransporter(
  createHttpTransport(process.env.LOG_INGEST_URL!)
);

Retries and circuit breaker behavior help prevent unstable observability infrastructure from creating runtime instability.

A transport failure should remain an operational signal, not become an application failure.

Production Usage

In production, structured logging should be treated as part of the operational architecture.

A typical production setup uses JSON output, context-aware metadata, persistent or remote transports, graceful shutdown, and selective metrics tracking.

const logger = createLogger({
  level: "info",
  json: true,
  transports: [
    createRotatingFileTransporter({
      filename: "./logs/runtime.log",
      frequency: "daily",
      backupCount: 7,
      compress: true
    })
  ],
  enableMetrics: {
    enabled: true,
    logInterval: 60_000
  }
});

High-throughput systems should prefer buffering or asynchronous batching so logging does not introduce unnecessary filesystem or network pressure during sustained traffic.

Runtime Environments

@ambiten/logger is designed to operate across different execution environments.

It can be used in local development, production APIs, background workers, queue processors, GraphQL systems, serverless functions, and containerized infrastructure.

The logging model remains consistent across environments because the logger operates on structured runtime entries before transport delivery occurs.

Relationship with Ambiten

@ambiten/logger is part of the wider Ambiten runtime ecosystem.

It complements @ambiten/core, runtime instrumentation, adapter-driven execution, transaction-aware workflows, middleware pipelines, tenant-aware context propagation, and production observability tooling.

The package can still be used independently in non-Ambiten systems, but its full value appears when runtime context and structured execution metadata are available.

Documentation

The official Ambiten documentation includes guides for structured logging, context-aware telemetry, transport pipelines, production configuration, metrics tracking, resilience handling, testing, shutdown behavior, and observability integration.

Documentation:

https://ambiten.dev

Philosophy

Logs should describe runtime behavior, not just developer intent.

Ambiten Logger exists to make operational behavior visible, structured, and traceable across modern runtime systems.

License

MIT