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

In the scenario where a very large csv file has an unclosed quote in an early line, the library is trying to bring in all the data until the closing...

Hello, I used this package to parse CSV file to JSON but the ods extension failed to parse it return something like field12: 'v�H�\b�S\u0011�\u001e�\u0014\u0005��\\\u0011�\u0004���у|��(�`8\bE]S�9�\u00005����\u001b�\u001f��n A�\u0011�*\tO�\u001ex�o�U+�����#q���\u0019�\u0015*�~���\u0011��Fi��1�#aa\u001e5-�ݺ1 +�k�\u000f��k�;k��\u00144_�\u0017�\f\b�FJ�P39���\t�\u001c��Nˊ%��\u0016V�ݕ�Z\u0012&K�\u0015

Hi, minor issue in the "Add asynchronous line by line processing support" [(link to example)](https://github.com/Keyang/node-csvtojson/blob/master/docs/csvtojson-v2.md#add-asynchronous-line-by-line-processing-support) documentation. The feature detail example:. ```javascript csv() .fromFile(csvFilePath) .subscribe((json,lineNumber)=>{ return Promise((resolve,reject)=>{ }) },onError, onComplete) ```...

Does anybody know how I can convert the gallery field in the CSV into a JSON array? The field is a list of image URLs separated by pipes. I have...

I want to convert my csv file line by line to JSON and after that write it line by line to result.txt Here is what I am doing ``` import...

Seems like if there is a delimiter character in the last column of a csv (except for in the last row), then since the field gets wrapped with quotes, when...

`await csv({ output: 'csv' }).fromString('a,b,c\n1,2,3\n4,5,6')` According to the API, a,b,c should be in the output because noheader is false. However it only outputs data rows without header. fromFile() would be...

Simple question: is it possible to have rows converted into seperate JSON files instead of all the rows in a single JSON file as an array.

I'm currently exporting a column from javascript and converting it to a string. For some reason though excel parses it as a number and removes leading zeros if I try...