Dan
Dan

Reputation: 69

NestJS exporting library to pdf or excel

Is there any NestJS have library for exporting file like pdf or excel?

I'm trying to use nodeJS library. but it's not working. thank you

Upvotes: 0

Views: 5881

Answers (1)

Hugo Sohm
Hugo Sohm

Reputation: 3320

You have two different packages from npm to export data as pdf or csv.

Here is the export-to-csv package to export data as csv

yarn add export-to-csv

And here the nestjs-pdf package to export data as pdf

yarn add nestjs-pdf

Upvotes: 1

Related Questions