1.0.2 • Published 7 years ago

p-csv-parser v1.0.2

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

p-csv-parser

Build Status

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 parse
  • options Object (optional)
    • headers Boolean|Array - If true, the first line of csvString 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