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

nest-request-interceptor

v11.1.1

Published

Lightweight HTTP and RPC request logging interceptors for NestJS with decorators to skip or deduplicate logs.

Downloads

676

Readme

nest-request-interceptor

Lightweight HTTP and RPC request logging interceptors for NestJS. Color-coded, zero-config, with decorators to silence or deduplicate noisy routes.

Install

npm install nest-request-interceptor

Quick Start

import { NestFactory, Reflector } from "@nestjs/core";
import { HTTPInterceptor, RPCInterceptor } from "nest-request-interceptor";

// HTTP
const app = await NestFactory.create(AppModule);
app.useGlobalInterceptors(new HTTPInterceptor(app.get(Reflector)));

// RPC (microservices)
const micro = await NestFactory.createMicroservice(AppModule, { transport: Transport.RMQ, ... });
micro.useGlobalInterceptors(new RPCInterceptor());

Log Output

[HTTPInterceptor] POST /api/users 201 12ms
[HTTPInterceptor] GET  /api/users 200 3ms
[HTTPInterceptor] GET  /api/users/999 404 2ms — User not found
[RPCInterceptor] RECEIVED - chats:request
[RPCInterceptor] EMIT - chats:request 1523ms
[RPCInterceptor] REQUEST abc123 customers:read
[RPCInterceptor] SEND abc123 customers:read 8ms

Colors: green (2xx), blue (3xx), yellow (4xx), red (5xx).

Decorators

@SkipLogging()

Completely silences logging for a route. No logs at all.

import { SkipLogging } from "nest-request-interceptor";

@SkipLogging()
@Get("internal/metrics")
metrics() { return this.metricsService.collect(); }

@SkipNoise()

Logs the first request, then suppresses identical subsequent requests. Logs again when the response status changes or an error occurs. Ideal for health checks and readiness probes.

import { SkipNoise } from "nest-request-interceptor";

@SkipNoise()
@Get("health-check")
healthCheck() { return { status: "ok" }; }

Behavior:

  • First GET /health-check → logged
  • Next 1000 identical GET /health-check 200 → suppressed
  • GET /health-check 500 (error) → logged, cache reset
  • Next GET /health-check 200 → logged again

Combining

@SkipLogging()   // never log — use for internal/debug routes
@SkipNoise()     // log once — use for probes and polling endpoints
// (no decorator) // always log — default for all routes

API

| Export | Type | Description | |---|---|---| | HTTPInterceptor | NestInterceptor | Logs HTTP method, URL, status, duration | | RPCInterceptor | NestInterceptor | Logs RPC pattern, message ID, duration | | SkipLogging | Decorator | Suppress all logging for a route | | SkipNoise | Decorator | Deduplicate identical log entries | | Log | Function | Timestamped console.log utility |

Compatibility

  • NestJS 10, 11+
  • TypeScript 5, 6
  • Express 4, 5
  • Any RMQ/Redis/NATS transport

License

MIT