CSVParse for Node.js

IssuesGitHub

Option from

The from option handles records starting from a requested number of records. Count is 1-based, for example, provides 1 (and not 0) to emit first record.

Inferred column names

When the column option is active, the first record is treated as a header. It is not accounted as a record. Thus, the first record is used to retrieve the properties names and the count start from the next record.

This example read the first a,b record to determine column names, skip the next record and return records afterward.

import assert from 'node:assert';
import { parse } from 'csv-parse';

parse(`
a,b
1,2
3,4
5,6
`.trim(), {
  columns: true,
  from: 2
}, function(err, records){
  assert.deepStrictEqual(
    records, [{
      a: '3',
      b: '4'
    }, {
      a: '5',
      b: '6'
    }]
  );
});

About

The Node.js CSV project is an open source product hosted on GitHub and developed by Adaltas.