node-csvtojson icon indicating copy to clipboard operation
node-csvtojson copied to clipboard

Blazing fast and Comprehensive CSV Parser for Node.JS / Browser / Command Line.

Results 135 node-csvtojson issues
Sort by recently updated
recently updated
newest added

Hi there. First of all thank you so much for this package, it's incredibly useful, and I am using it every day at work! I wanted to ask if it...

Hi, I am trying to add some more JSON content to my work with the combination of someone else's JSON database of addresses but when I convert my CSV file...

Bumps [chownr](https://github.com/isaacs/chownr) from 1.0.1 to 1.1.4. Commits 814f642 1.1.4 a0d7ae0 push to github before npm 1a3667a ignore stuff 147eac4 Full tests, handle errors properly in many cases 578fb9f update tap,...

dependencies

Thanks for creating and maintaining this package, it looks very useful! Just a small suggestion from a newcomer who had a rather bumpy time getting started. I tried: $ csvtojson...

It's best to avoid use of confusing double negatives when designing APIs. I suggest phasing in the parameter 'header' in this major version and phasing out the parameter 'noheader' in...

Hi, Is the a way to set column 1 as header. My CSV looks like this and there is not header. contact.name.text, jim contact.lastname.text, jorden contact.address.state.text, CA contact.city.text, LA expected...

Hi I need to list all files from a S3 bucket and I need to list the headers of that file for that I used the below code it is...

I only need the first few lines of data in the file to be displayed on the web page, how to avoid reading the entire file

Hello, We current trying to parse a csv to json and receive the following result when calling the library, it seems like it is a state rather than a result:...

I have headers that contain "." and the parser is creating an object like follows: `{"SKU":"SOMESKU","\"Google":{"com\"":"135.99"}}` the expected output would be: `{"SKU":"SOMESKU","Google.com":"135.99"}}` I am using the .fromString() method for converting....