convert array to csv file, and allow browser to automatically download the file
npm install csv-exportorA Javascript library for browsers to generate and download csv file from array.
The csv parser is based on module comma-separated-values
refer to comma-separated-values
to see all the allowed array patten and options.
using window.URL.createObjectURL to create file stream, so please pay attention to the browser compatibility.
``js
/*
using vue2 to demo its usage
by click the button,
your brower would start a download
of file 'test.csv' immediately.
*/
...
...
import CsvExportor from 'csv-exportor'
export default {
data() {
return {
tableData: [["a","b","c"],["d","e","f"]],
header: ["foo","bar","baz"],
}
},
methods: {
exportCsv() {
CsvExportor.downloadCsv(
tableData,
{ header },
'test.csv');
}
}
`
Use Yarn or npm:
`bash`
$ yarn add csv-exportor
`bash`
$ npm i csv-exportor --save
It's an UMD module, so you can:
`js`
// ECMAScript 2015+ (via Babel)
import CsvExportor from 'csv-exportor'
`js`
// CommonJS
const CsvExportor = require('csv-exportor')
`html`
`js
import CsvExportor from 'csv-exportor'
/*
generate csv file from data,
and automaticly download the file for browser
*/
CsvExportor.downloadCsv(data, options, fileName);
// generate data url of the generated csv file
CsvExportor.genUrl(data, options);
``
LICENSE MIT