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

@emdzej/bimmerz-logger

v0.1.2

Published

Shared structured logger for the bimmerz family — pino-shape API, hierarchical categories, runtime-mutable config, pluggable sinks. No env reads, isomorphic (Node + browser), tree-shake-friendly.

Downloads

1,426

Readme

@emdzej/bimmerz-logger

Shared structured logger for the bimmerz family of tools (ediabasx, inpax, ncsx, and the apps that build on them).

Pino-shape API, hierarchical categories, runtime-mutable central config, pluggable sinks. No environment variables. Works in both Node and the browser; tree-shake-friendly so web bundles don't ship pino.

TL;DR

import { configureLogger, getLogger } from '@emdzej/bimmerz-logger';

// App start — configure once, anywhere.
configureLogger({
  level: 'info',
  categories: {
    EDIABASX: 'debug',
    'EDIABASX.parser': 'trace',
    INPAX: 'info',
  },
});

// Anywhere in the codebase — log with or without a category.
const log = getLogger('EDIABASX.parser');
log.debug({ jobId: 'C_S_LESEN' }, 'parsing request packet');
log.info('parser ready');

// Want to flip on debug for one subsystem at runtime?
configureLogger({ categories: { ...prev, INPAX: 'debug' } });
// — every previously-handed-out INPAX logger sees the new level immediately.

Design

The interface is the same shape as pino — log.debug(bindings, msg), levels trace through fatal, log.child(bindings). We don't re-export pino's types because we don't want our public API locked to one implementation. The default sink is a small console wrapper (works in browser + Node); apps that want pino's pretty-print, JSON, or file destinations opt in via @emdzej/bimmerz-logger/sinks/pino.

Logger handles are proxies, not snapshots — they consult the live config on every call. So once an app calls configureLogger(…), every logger handle anyone ever cached picks up the new settings on its next emit. No need to "refetch" loggers from callers.

Categories are hierarchical by dot. A rule for EDIABASX applies to EDIABASX.parser and EDIABASX.parser.lexer unless a more specific rule wins. Most specific match always wins:

configureLogger({
  level: 'warn',
  categories: {
    EDIABASX: 'debug',          // covers EDIABASX, EDIABASX.runner, …
    'EDIABASX.parser': 'trace', // overrides for parser sub-tree
    INPAX: 'info',
  },
});

getLogger('EDIABASX.parser.lexer').trace('hit');  // matches EDIABASX.parser → 'trace' → emitted
getLogger('EDIABASX.runner').debug('hit');        // matches EDIABASX → 'debug' → emitted
getLogger('INPAX.dispatcher').debug('miss');      // matches INPAX → 'info' → dropped
getLogger().debug('miss');                        // root → 'warn' fallback → dropped

API

configureLogger(partial: Partial<LoggerConfig>)

Replace or merge into the active configuration. Shallow merge — categories and sink are replaced wholesale when present in the partial.

configureLogger({ level: 'debug' });                    // bump default level
configureLogger({ categories: { EDIABASX: 'trace' } }); // change category rules
configureLogger({ categories: {} });                    // clear all category rules

Apply early in your app's entry point. You can re-apply at any time — the change is immediate for every existing logger handle.

getLogger(category?: string): Logger

Returns a logger handle. With no argument, the root logger (category = null). With a dot-separated string, a category-scoped logger.

const root = getLogger();
const parser = getLogger('EDIABASX.parser');
const job = parser.child({ jobId: 'C_S_LESEN' });

Logger

interface Logger {
  readonly level: LogLevel;     // currently-effective threshold (live)

  trace(msg: string): void;
  trace(bindings: object, msg: string): void;
  debug(msg: string): void;
  debug(bindings: object, msg: string): void;
  info(msg: string): void;
  info(bindings: object, msg: string): void;
  warn(...): void;
  error(...): void;
  fatal(...): void;

  child(bindings: object): Logger;
}

Two call forms — string-only log.info("done"), or bindings-first log.info({ jobId, count }, "done"). Bindings are merged with any permanent child() bindings; call bindings win on key conflicts.

log.level is a read-only getter that returns the live effective level for this logger's category. Cheap to call — use it as an escape hatch for hot paths where formatting the message is expensive:

if (log.level === 'trace') {
  log.trace({ details: expensiveDump() }, 'sg op');
}

Sinks

Bundled sinks (importable from the main entry):

| Function | Use | |---|---| | consoleSink({ colors?, relativeTime? }) | Default. Routes through console.{debug,info,warn,error}. ANSI colour when TTY. | | bufferSink({ capacity? }) | In-memory ring of last N records. .snapshot() returns them — drives "Download log" UIs. | | multiSink(a, b, …) | Fan one record out to every wrapped sink. Failures in one sink don't poison the others. | | nullSink() | Drops everything. Tests, or to disable logging without changing level. |

Optional pino sink — import from the subpath so it's not in the default tree-shake graph:

import { pinoSink } from '@emdzej/bimmerz-logger/sinks/pino';

configureLogger({
  level: 'info',
  sink: pinoSink({ pretty: true }),     // pino-pretty when TTY
  // or: pinoSink({ destination: '/var/log/app.log' })
});

Sink contract

interface Sink {
  write(record: LogRecord): void;
}

interface LogRecord {
  level: LogLevel;
  category: string | null;
  bindings: Record<string, unknown>;
  msg: string;
  time: number;  // Date.now()
}

Roll your own sink for special destinations:

const httpSink: Sink = {
  write(rec) {
    if (rec.level === 'error' || rec.level === 'fatal') {
      navigator.sendBeacon('/log', JSON.stringify(rec));
    }
  },
};

configureLogger({
  sink: multiSink(consoleSink(), httpSink),
});

What we don't do

  • No environment-variable reads. Apps are responsible for mapping their CLI flags / wizard config / settings panel onto configureLogger(…). Keeps the library portable and predictable.
  • No printf-style formatting. Use template literals or bindings:
    log.debug({ a, b }, 'compared');                   // ✅ bindings
    log.debug(`compared ${a} vs ${b}`);                // ✅ template literal
    log.debug({}, 'compared %s vs %s', a, b);          // ❌ not supported
  • No async sinks. All sinks are sync. If you need network or storage shipping, wrap a sync sink that enqueues to your own async pipeline.

Migration from @emdzej/ediabasx-logger / @emdzej/inpax-logger

Those packages will be retired once the codebases here are migrated. The shapes are similar — configureLogger({...}) plus getLogger("module") — so most call sites need only an import path change:

// old
import { getLogger, configureLogger } from '@emdzej/ediabasx-logger';
// new
import { getLogger, configureLogger } from '@emdzej/bimmerz-logger';

Behavioural differences worth knowing:

  • configureLogger now takes effect on existing logger handles. ediabasx-logger only affected new ones.
  • pino types are no longer in the public surface. Logger is our own interface (same shape). If you typed something as pino.Logger, swap to Logger from this package.
  • pretty / destination options moved off the package-level config and into the pino sink. Get them by switching the sink:
    import { pinoSink } from '@emdzej/bimmerz-logger/sinks/pino';
    configureLogger({ sink: pinoSink({ pretty: true }) });