Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

@golevelup/nestjs-webhooks

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@golevelup/nestjs-webhooks

Badass utilities for integrating webhooks and NestJS

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
14K
20.27%
Maintainers
3
Weekly downloads
 
Created
Source

Webhooks

Make it easier to build NestJS applications that consume webhooks from third party services

version downloads license

Getting Started

::: code-group

npm install ---save @golevelup/nestjs-webhooks
yarn add @golevelup/nestjs-webhooks
pnpm add @golevelup/nestjs-webhooks

:::

Features

  • ✅ Simple utilities and middleware for enabling a request's raw body to be unmodified on specified routes
  • ✅ Control raw body parsing so that you can copy the raw body onto a new configurable property on the Request object
  • ✅ Provide a reusable foundation for building more specific webhook integrations

Techniques

Simple Raw Body Parsing

Many third party webhook providing services require that the raw body be available on the request in order for it to be validated. However, a NestJS app in it's default state automatically includes JSON parsing middleware which will modify the req.body property.

The most basic use case is keeping JSON parsing on all routes except for the ones you specifically want to exclude such that the request body property remains unchanged.

Step 1: Disable global raw body parsing

In your bootstrap function (normally in main.ts), disable body parsing. Don't worry! We'll bring it back to the other routes later.

const app = await NestFactory.create(AppModule, {
  bodyParser: false,
});

Step 2: Configure Middleware Routes

If your AppModule doesn't already, implement the NestModule interface from @nestjs/common. This will allow you to apply middleware to specific routes.

We provide a utility function to simplify configuration using the already imported middlewares. This will automatically configure your app to apply raw body parsing to the routes you specify and then to automatically apply JSON body parsing to all other routes with the exclusion of the raw routes.

import { applyRawBodyOnlyTo } from '@golevelup/nestjs-webhooks';

class AppModule implements NestModule {
  configure(consumer: MiddlewareConsumer) {
    applyRawBodyOnlyTo(consumer, {
      method: RequestMethod.ALL,
      path: 'webhook',
    });
  }
}

Keywords

NestJS

FAQs

Package last updated on 18 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts