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

Full featured CSV parser with simple api and tested against large datasets.

Results 73 node-csv issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** A type definition can be stricter so that parse have more type hint in typescript. A clear and concise description...

enhancement

Hi there, The following code ``` const inputFilePath = 'test_in.csv'; const outputCsv = fs.createWriteStream('test_out.csv'); fs.createReadStream(inputFilePath) .pipe(csv.parse({ columns: true })) .pipe(csv.stringify({ header: true, quoted: true })) .pipe(outputCsv); ``` Gives the output...

Hi I am have imported csv in Angular component import * as csv from 'csv'; inherits_browser.js:5 Uncaught TypeError: Cannot read property 'prototype' of undefined at Object.inherits (inherits_browser.js:5) at Object../node_modules/csv-generate/lib/index.js (index.js:156)...

We are using very old version v1.2.0 and getting below GitHub vulnerability warning related to csv-parse which is being used in your package. ``` High Regular Expression Denial of Service...

We noticed that with `"csv": "5.1.3",` in package.json, the csv module upgrades `csv-parse` dependency from 4.4.7 to 4.6.3 without a version change of the parent `csv` module. (csv-parse 4.6.x has...

**Describe the bug** When using `stream-transform` for processing large datasets and the `parallel` option is a value greater than `1`, we're seeing high memory usage. **To Reproduce** ```js const fs...

I need to transfer emoji into csv, but it doesn't work ,and I have already set the bom of UTF-8. The result is :

The goal is for stringify to support values declared `as const`. eg. ``` const columns = ['name', 'age'] as const stringify({columns}) ``` As this array has no reasons to be...

**Describe the bug** Using [email protected], I have found that if I provide a buffer input or stream to the parser, it will always send every row in a buffer it...

https://github.com/adaltas/node-csv/issues/419