Skip to main content

Installation

Install the package

NPM

npm i nestjs-export-module

Yarn

yarn add nestjs-export-module

Integrate into your NestJS application

Import DataExporterModule into your app module (or a feature module) and inject DataExporterService where needed.

app.module.ts
import { Module } from '@nestjs/common';
import { DataExporterModule } from 'nestjs-export-module';

@Module({
imports: [DataExporterModule],
})
export class AppModule {}