objects-to-csv icon indicating copy to clipboard operation
objects-to-csv copied to clipboard

Converts an array of JavaScript objects into a CSV file, optionally saving it to filesystem.

Results 28 objects-to-csv issues
Sort by recently updated
recently updated
newest added

When I try to create a CSV with below data, CSV file was created with value 1 for true and empty for false but I expect to be updated as...

#Work I ran into an issue with this library when our JSON object exceeded 100,000 nodes. Added a condition to the script to push data manually instead of Map if...

When data is big (I had 432504 objects), this error happens: RangeError: Maximum call stack size exceeded at convert (/project/node_modules/objects-to-csv/index.js:134:12) at ObjectsToCsv.toString (/project/node_modules/objects-to-csv/index.js:96:18) at ObjectsToCsv.toDisk (/project/node_modules/objects-to-csv/index.js:56:27)

I'm trying to spread my data in multiple sheets in CSV that I can switch in between, is that possible? To be clear, I have 3 data arrays that I...

Thank you for your hard work and i appricate if you can add this

… large datasets are used the maximum call stack is not exceeded When converting a large object (like ~150k records) to the csv arrays, the maximum call stack gets exceeded...

confirmed

im getting this error , Unhandled Rejection (TypeError): fs.existsSync is not a function i used a array of objects

https://npm.runkit.com/objects-to-csv

Could you please let me know if there an option to add double quotes header as well as data before adding to csv? I was able to add it to...