2.0.2 • Published 7 years ago

csv-read v2.0.2

Weekly downloads
7
License
MIT
Repository
github
Last release
7 years ago

CSVRead

Read a CSV file using streams. Optimized for big files. Reads 1 Million lines in lesser then a second!

const CSVRead = require('csv-read')

const csv = CSVRead.load('./data/test.csv', {
  delimiter: ';'
})

csv.parse((line, index) => {
  console.log(line) // Line as an object, using keys from first line
}).then((res) => {
  // res contains the full parsed csv as an array
  console.log(`${res.length} lines parsed`)
})

Options

str delimiter

Set column delimiter, default: ,

str quote

Set column quote, default: "

str newline

Set new line char, default: \n

arr columns

Optional, set column keys, if this is not set, the first line is used as column keys

num columnOffset

Sets the column offset. Defaults to 0

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.0

8 years ago