export-excel-file
v1.2.0
Published
Download a basic layout Excel file with CSV-style data.
Readme
export-excel-file
Download a basic layout Excel file with CSV-style data.
Installation
npm install export-excel-fileUsage
import { downloadAsSpreadsheet } from "export-excel-file";
// With array of objects
await downloadAsSpreadsheet([
{ name: "John", age: 30 },
{ name: "Jane", age: 25 }
]);
// With array of arrays
await downloadAsSpreadsheet([
["Name", "Age"],
["John", 30],
["Jane", 25]
]);
// With options
await downloadAsSpreadsheet(data, {
filename: "report.xlsx",
sheetTitle: "Data",
wrapCells: true
});