csvjson icon indicating copy to clipboard operation
csvjson copied to clipboard

csv to json

Results 10 csvjson issues
Sort by recently updated
recently updated
newest added

./node_modules/csvjson/src/stream.js:17:15-32 - Error: Module not found: Error: Can't resolve 'stream' in .../node_modules/csvjson/src' Did you mean './stream'? Requests that should resolve in the current directory need to start with './'. Requests...

This is a duplicate of unsolved #12. When running this code: ```js const csvjson = require('csvjson'); const options = { delimiter: ',', quote: true }; const data = `one,two "some...

When used in streaming mode with a reasonable size file, it seems to choke at regular points - I'm guessing its at chunk boundaries. Each time it stops part way...

Hoping to do what the title says. I am pulling in answers from a form, and then turning them from JSON into CSV. Sometimes the answers are arrays, sometimes not...

According to [RFC 4180](https://www.loc.gov/preservation/digital/formats/fdd/fdd000323.shtml) quote in a CSV string should be double quoted. Adding this support so the wrap flag can be RFC complient.

Hello, Is there a way to filter which fields/keys to export when converting json to csv?

How do I disable quotes for bool column value? And conditionally leave it on for string column values?

e.g. `"Invest in Tinder, Buzzfeed or Airbnb"` will get detected as `""Invest in Tinder,"` and `"Buzzfeed or Airbnb"`