This package has been deprecated

Author message:

Moved to @vanillaes/csv

csv-es
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

CSV-ES

CSV-ES is a universal JavaScript CSV parser designed specifically to be simple, fast, and spec compliant.

GitHub Releases NPM Release Bundlephobia MIT License Latest Status Release Status

Features

  • RFC Compliant
  • ECMAScript Module
  • CommonJS Compatible
  • Typescript Compatible

Installation

npm install csv-es
import * as CSV from 'csv-es';

or

import { parse, stringify } from 'csv-es';

CSV.parse()

Takes a string of CSV data and converts it to a 2 dimensional array of [entries][values]

Arguments

CSV.parse(csv, {options}, reviver(value, row, col)) : [entries][values]

  • csv - the CSV string to parse
  • options
    • typed - infer types (default false)
  • reviver1 - a custom function to modify the output (default (value) => value)

1 Values for row and col are 1-based.

Example

import CSV from '/path/to/csv/index.js';
const csv = `
"header1,header2,header3"
"aaa,bbb,ccc"
"zzz,yyy,xxx"
`;
const parsed = CSV.parse(csv)
console.log(parsed);
> [
>   [ "header1", "header2", "header3" ],
>   [ "aaa", "bbb", "ccc" ],
>   [ "zzz", "yyy", "xxx" ]
> ]

CSV.stringify()

Takes a 2 dimensional array of [entries][values] and converts them to CSV

Arguments

CSV.stringify(array, {options}, replacer(value, row, col)) : string

  • array - the input array to stringify
  • options
    • eof - add a trailing newline at the end of file (default true)
  • replacer1 - a custom function to modify the values (default (value) => value)

1 Values for row and col are 1-based.

Example

import CSV from '/path/to/csv/index.js';
const data = [
  [ "header1", "header2", "header3" ],
  [ "aaa", "bbb", "ccc" ],
  [ "zzz", "yyy", "xxx" ]
];
const stringified = CSV.stringify(data)
console.log(stringified);
> "header1,header2,header3"
> "aaa,bbb,ccc"
> "zzz,yyy,xxx"

CommonJS

A .cjs bundle is included for CommonJS compatibility

CSV.parse()

const CSV = require('csv-es');
const csv = // the csv string
const data = CSV.parse(csv);

CSV.stringify()

const CSV = require('csv-es');
const data = // the a 2-dimensional array
const csv = CSV.stringify(data);

Typescript

Typings are generated from JSDoc using Typescript. They are 100% compatible with VSCode Intellisense and will work seamlessly with Typescript.

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i csv-es

    Weekly Downloads

    17

    Version

    2.0.3

    License

    MIT

    Unpacked Size

    24.4 kB

    Total Files

    28

    Last publish

    Collaborators

    • evanplaice