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

Hey, opening this per suggestion in #339 The returned `fromFile()` Promise is not spec compliant so it does not resolve if you call `then` or `await` on it at a...

hello @Keyang please have a look on this issue. I am using csvtojson/v2 for fetching data from API under loop. while on single use it works, but under loop fromStream...

I am reading a csv file using const jsonArray = `CSV().fromFile(`/tmp/${fileName}`);` There are column names like **geotag_latitude** & **geotag_longitude**, but after reading it the underscore in the column name is...

The following are discrepancies between the [standard](https://en.wikipedia.org/wiki/ISO_3166-1#Officially_assigned_code_elements) and `en.json` `Taiwan, Province of China` instead of `Taiwan` `Korea, Republic of` instead of `South Korea`

This declaration cannot reflect the real type of the exported object. Wrapping it to interface so that can `import { csv } from 'csvtojson` with correct type

I'm using `csvtojson` in the browser, and I'm interested in optimizing this library's usage with bundlers (webpack, rollup, etc). There's a few areas for opportunity: - When you bundle `csvtojson`...

Why this print before the "test" log? ``` csv({delimiter:[';']}).fromFile("\castelli-campania.csv").then((jsonObj)=>{ jsonObj.forEach(row => { words.push(row["Provincia"]); console.log(words.length) }); }) console.log("test" + words.length) ```

Hi, I would like to request two new functions .headerRow(x) .skipRow(x) I have for example a csv that has two rows that are header information ``` col1,col2,col3 ----,----,---- a,b,c d,e,f...

I am attempting to use the npm package csvtojson; however, I am receiving the following error message: Uncaught ReferenceError: require is not defined. I installed the npm package, and see...

How can the colParser convert all columns to numbers. Without informing the exact names.