0.2.2 • Published 8 days ago

rollup-plugin-papaparse v0.2.2

Weekly downloads
-
License
MIT
Repository
-
Last release
8 days ago

npm version

rollup-plugin-papaparse

This is a Rollup plugin that allows to import CSV files using the papaparse library.

Installation

Just execute npm install --save-dev rollup-plugin-papaparse or yarn add rollup-plugin-paparse --dev.

Usage

Add plugin to the Rollup's config plugin section:

import papaparse from "rollup-plugin-papaparse";

export default {
  // ...
  plugins: [papaparse()],
};

Now you can import CSV files from your code:

import data from "./data.csv";

for (const row of data) {
  // ...
}

By default, the papaparse parses CSV to the string[][] format, so the following file:

type,count
apples,7
pears,4
bananas,5

will be imported as

[
  ["type", "count"],
  ["apples", "7"],
  ["pears", "4"],
  ["bananas", "5"]
]

You can modify this behavior by using plugin configuration objects or by the import path URL-like arguments (see below)

Configuration

papaparse options

You can pass the configuration object to the plugin with any of papaparse configuration options.

For example, you can pass the 'header' option to change the parse output from arrays to records:

import papaparse from "rollup-plugin-papaparse";

export default {
  // ...
  plugins: [papaparse({ header: true })],
};

The previous fruits example will now be parsed as:

[
  { "type": "apples", "count": "7" },
  { "type": "pears", "count": "4" },
  { "type": "bananas", "count": "5" }
]

URL-like parameters

You can set some of the parsing parameters right in the import string via the URL-like syntax: import data from "./data.csv?header=true". These parameters override the parameters specified in the plugin configuration.

Only the following papaparse parameters can be set in this way:

  • delimiter
  • newline
  • quoteChar
  • escapeChar
  • header
  • dynamicTyping
  • preview
  • comments
  • skipEmptyLines
  • fastMode

File extensions

By default, the plugin accepts only files with the ".csv" extension. You can change it by passing the extensions option, which is an array of acceptable file endings. It is [".csv"] by default.

0.2.1

8 days ago

0.2.2

8 days ago

0.1.2

3 years ago

0.1.0

3 years ago