p-csv-parser
v1.0.2
Published
A simple and blazing fast csv parser, promisified.
Downloads
10
Maintainers
Readme
p-csv-parser
A simple and blazing fast csv parser, promisified.
Table of contents
Installation
$ npm install --save p-csv-parser
Or if you prefer yarn:
$ yarn add p-csv-parser
Usage
const csvParser = require('p-csv-parser');
csvParser(csvString)
.then(results => console.log(results)); // Array of rows as objects
API
csvParser(csvString, options)
csvString
String (required) - The csv content to parseoptions
Object (optional)headers
Boolean|Array - If true, the first line ofcsvString
is parsed as headers, else use the array. Default:true
delimiter
String - Set the field delimiter, Default:","
Development
$ npm test
Changelog
- 1.0.2
- Fix error with large files. Tested with file containing roundabout 155000 lines
- 1.0.1
- Fix module error
- 1.0.0
- Initial Release