Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NodeJs construct Excel file and export in PDF

Tags:

node.js

excel

pdf

As the title said, I'm searching for a NodeJS library to construct Excel (xlsx), with cell format (color, font size, images...). Importantly, it must has the capability of exporting the resulted .xlsx file to .pdf format.

I know some libs that call Excel API but I'm running a linux server and that's impossible for me.

like image 511
Immort Avatar asked Oct 27 '25 05:10

Immort


1 Answers

Thanks to jcaron comment I finally found out that I can build a PDF file directly without passing through xls. I used pdfmaker for nodejs that support creating PDF file pretty well.

like image 129
Immort Avatar answered Oct 28 '25 20:10

Immort