0
I would like to know a library for reporting in Javascript, and with Nodejs server. I’ve researched some things but nothing fits much to what I need, it can be either generating reports through the tables rendered in html or fetching the data in DB.
Usually, the report is generated client-side with some Javascript libraries. What you should do is: On your server, create end-points that provide the report data and on the front-end mount an HTML and then turn into PDF and etc
– Márcio Eric
if you use Node and npm, just look for the type of report you want to generate, for example this package https://www.npmjs.com/package/xlsx already covers almost everything you need
– Felipe Duarte
I have already managed to find a library called pdfMake that creates pdf’s, I really appreciate your help
– LeonardoEbert