Novu changelog
Novu NestJS Module
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.
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 {}