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

Error: ```shell reason: TypeError: (0 , _csvtojson2.default)(...).fromFile(...).catch is not a function ``` code: ```javascript import csvtojson from 'csvtojson' json_obj = await csvtojson({options}).fromFile('{pathToFile}').catch((err) => console.error(err)) ``` `.catch` tries to catch `any`...

TL;DR This lib will be kept maintained and supported. Anyone interested in being a collaborator please reply on this thread. Hi All, This library has been published since 2013 and...

Currently i am reading a csv file from azure blob through stream option. In parameters i can pass checkType to true which will try to convert the values to corresponding...

I would like to request a new parameter ```typescript startOnLine: number ``` let's say my data look like ``` ----,----,---- ----,----,---- field1,field2,field3 val1,val2,val3 val4,val5,val6 ``` So I would use it...

Including over 1M of html coverage output, test code, etc. See attachment. [csvtojson.txt](https://github.com/Keyang/node-csvtojson/files/4607392/csvtojson.txt)

The below error occurs when creating a .vsix file for an Azure DevOps extension (https://docs.microsoft.com/en-us/azure/devops/extend/develop/add-build-task?view=azure-devops#step-4-package-your-extension): > error: Error: Part Name 'task/node_modules/csvtojson/test/data/data#139' is invalid. Please check the following: error: 1. No...

Would you be open to dropping Bluebird in favor of native promises? I would be happy to write the PR to do this. It would be a breaking change.

I am using csvtojson to convert a file of current covid19 virus stats. and it works great. but, I only use maybe 2% of the data.. I need to filter...

[Custom parsers function](https://github.com/iselcuk/node-csvtojson#custom-parsers-function) Let's say we want to create a custom parser function and reuse that in multiple columns, we would go for something like this: ` colParser: { a:...