node-csv
node-csv copied to clipboard
Full featured CSV parser with simple api and tested against large datasets.
**Summary** I am using `csv-parse` in a TypeScript project the following way: ```ts import {parse} from 'csv-parse/sync'; const records = parse(input, { columns: true, delimiter: ',', skip_empty_lines: true }); ```...
**Describe the bug** I'm trying to parse an ugly csv file, I got extra values on some records, here is an example : Line 2 is failing because there is...
**Summary** Please provide an implementation of a Transformer that can parse large CSV files in a browser environment. **Motivation** I tried to implement such a CsvParseTransformer. However, when dealing with...
**Summary** It would be useful to have a method to repair rows when using columns. **Motivation** In my case some rows have one or two columns more than the rest...
**Describe the bug** Not exactly a bug because it's not truly blocking me and I'm sure it's got something to do with my environment, but wanted to post here to...
**Describe the bug** First, I want to express my appreciation for this amazing library! :star2: The browser and ESM support, along with the features and ongoing maintenance, are fantastic. I...
**Describe the bug** A type of out of memory exception ``` # # Fatal error in , line 0 # Fatal JavaScript invalid size error 169220804 (see crbug.com/1201626) # #...
**Summary** I would like it if the `from_line` option could ignore comment lines when determining the line number. **Motivation** I receive a CSV structured like this: ``` // Some //...
**Describe the bug** Thank you for the great work on csv-parse. I am trying to import a csv files (over 850 rows with 51 columns) that is located in an...
**Summary** The library should be able to parse CSVs while considering multiple different potential quote character used for each value independently. E.g. allow a CSV mixing both single quote and...