0.1.0 • Published 4 years ago

xlsx-exporter v0.1.0

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

xlsx-exporter

A simple XLSX exporter for Node.js and browsers, with the goal of being able to export a 2D array directly to an XLSX file.

Usage

import * as xlsx from 'xlsx-exporter';

const worksheet = new xlsx.Worksheet([[1, 'a'], [2, 'b']]);
const workbook = new xlsx.Workbook();
workbook.addWorksheet(worksheet);
workbook.save(function(array) {
  // do something with this Uint8Array
})
0.1.0

4 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago