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

@capixjs/plugin-logging

v1.0.0

Published

Structured request logging plugin for Capix using pino

Downloads

351

Readme

@capixjs/plugin-logging

Structured request logging plugin for Capix using pino.

Install

npm install @capixjs/plugin-logging

Usage

loggingEnhancer() is an Enhancer — it attaches to individual capabilities via .enhance(), the same as withCache/withRetry/etc. from @capixjs/core. It is not a definePlugin()-style plugin and does not go in createServer({ plugins: [...] }): there's no single "every request passes through here" hook to attach it to at that level.

import { loggingEnhancer } from '@capixjs/plugin-logging';

const getUser = capability(schema, resolver).enhance(loggingEnhancer());

Apply it to every capability in a registry at once:

const logged = Object.fromEntries(
  [...registry].map(([name, cap]) => [name, cap.enhance(loggingEnhancer())]),
);

A successful call logs (at level: 'info', message 'ok'):

{ "level": 30, "time": 1716624000000, "capability": "users.getUser", "ms": 4, "msg": "ok" }

A thrown typed error (defineError) also logs at level: 'info' — not error — since it's an expected outcome, with the error's own status/code and message:

{ "level": 30, "capability": "users.getUser", "ms": 2, "status": 404, "error": "NotFound", "msg": "Not found" }

An unexpected (non-defineError) throw logs at level: 'error', message 'unhandled error', with the raw error attached under err.

Options

loggingEnhancer({
  // pino log level, used only when no `logger` is provided (default: 'info')
  level: 'debug',

  // Include the validated input on successful-call log lines (default: false —
  // avoid logging sensitive data unless you mean to; not included on error lines)
  logInput: true,

  // Include the resolver's return value on successful-call log lines (default: false)
  logOutput: true,

  // Bring your own pino instance instead of `level` — takes precedence
  logger: myPinoInstance,
})

There is no transport or base option on loggingEnhancer() itself — build those into the pino instance you pass as logger instead, using createLogger() (a thin wrapper around pino()) or pino() directly:

import { createLogger, loggingEnhancer } from '@capixjs/plugin-logging';

const logger = createLogger({
  transport: { target: 'pino-pretty', options: { colorize: true } },
  base: { service: 'my-api', version: '1.2.0' },
});

const getUser = capability(schema, resolver).enhance(loggingEnhancer({ logger }));

Development pretty-printing

npm install --save-dev pino-pretty
const logger = createLogger({ transport: { target: 'pino-pretty', options: { colorize: true } } });

License

MIT