JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 412
  • Score
    100M100P100Q86530F
  • License MIT

Export CSV files from javascript objects in the browser

Package Exports

  • csvexport

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (csvexport) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

CsvExport

Export CSV files from javascript objects in the browser

Usage

import CsvExport from "csvexport";

// See wiki for complete options
const exporter = CsvExport.create({ filename: "export.csv", columns: ["name", "age"] });

const people = [
  {name: "Alice", age: 20},
  {name: "Bob", age: 19},
  {name: "Charlie", age: 30}
];

exporter.downloadCsv(people);