Create Excel file in Nodejs

The requirement is to create an excel file in nodejs from json. Json will have around 50,000 objects. I have libraries that are asynchronous, but I want a library that does not in memory - I mean, I should be able to transfer contents to a file. If anyone can point me to such a library, this will be very helpful.

+4
source share
1 answer

This library works great with large volumes of exceljs data .

I wrote an example, you can check here. Github repo

+2
source

Source: https://habr.com/ru/post/1589370/


All Articles