Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
/ xlsx-exporter Public archive

A simple XLSX exporter for Node.js and browsers

Notifications You must be signed in to change notification settings

remerge/xlsx-exporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
})

About

A simple XLSX exporter for Node.js and browsers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published