Reputation: 69
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
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