# Novu NestJS Module - Novu Changelog

> Novu changelog: Novu NestJS Module. Learn about the latest updates, features, and improvements to the Novu notification infrastructure platform.

Canonical: https://novu.co/changelog/novu-nestjs-module/

Markdown: https://novu.co/changelog/novu-nestjs-module.md

Last updated: 2024-10-10T11:03:25.935Z

Published: 2024-10-10T11:03:25.935Z

Since day one, we've been building our API services on top of the NestJS framework. We've been working with an internal module for `@novu/framework` for a few months now and are excited to open-source the module for our customers to use in their Nest applications as well!

To learn more on how to integrate with your Nest application read our [docs.](<https://docs.novu.co/quickstart/nestjs>)

```
import { Module } from '@nestjs/common';
import { NovuModule } from '@novu/framework/nest';
import { testWorkflow } from './novu/workflows';

@Module({
    imports: [
        NovuModule.register({
            apiPath: '/api/novu',
            workflows: [testWorkflow],
        }),
    ],
})
export class AppModule {}
```
