node-csv
node-csv copied to clipboard
Full featured CSV parser with simple api and tested against large datasets.
**Describe the bug** When I try to use csv-parse/sync instead of csv-parse, my deploy to Firebase Functions fail with the following error: ``` Error: Error parsing triggers: Cannot find module...
**Summary** In csv-parse, the 'to' and 'to_line' options do not adequately support stripping trailing records. Recommend adding functionality that would either allow a syntax to these options, eg: 'T.1' to...
**Describe the bug** When using the csv library for a frontend app with Vue, I get build errors on multiple CI environments. When running the build command locally, it's working...
**Describe the bug** Getting ``` main.ts:1:23 - error TS1471: Module 'csv-parse' cannot be imported using this construct. The specifier only resolves to an ES module, which cannot be imported synchronously....
Add `columns` property for `Info` in csv-parse module
The example at https://csv.js.org/parse/recipes/stream_pipe/ has an incorrect call to ` transform()`, I believe. None of the function's overloads receives the Options argument as the second parameter. It resulted in an...
Hi, My raw data got a comma from a certain field, While I'm parsing the data it cause me to have a new column instead. How do you escape a...
I have a Pipe Delimited CSV (**Source**) like: ``` COLUMN 1|COLUMN 2|COLUMN 3 VALUE A1|VALUE A2|VALUE A3 VALUE B1|VALUE B2|VALUE B3 ``` I want a CSV (**Target**) like: ``` "COLUMN...
**Describe the bug** As the title says, I can't use `csv-stringify/sync` in my tests by running ts-jest. But I can build and run by ts-node. Dependencies: - CSV package -...
**Describe the bug** Using `csv-parse` package to parse a readable stream. Basically [this example](https://csv.js.org/parse/recipes/promises/) from your documentation. Introducing the `to` or `to_line` option seems to exit the stream without executing...