17.9.29 • Published 7 years ago

xlsx.io_blob v17.9.29

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

XLSX.io_blob

Adds support for blob as the writing output type.

dependencies

setup

Install the package via npm.

npm install xlsx.io_blob

Import the module into your Node.js project.

const xlsx = require('xlsx');
require('xlsx.io_blob');

Include the code in your page via a CDN.

<script src="https://unpkg.com/xlsx"></script>
<script src="https://unpkg.com/xlsx.io_blob"></script>

usage

let wbOut = XLSX.write(wb, {bookType: 'xlsx', bookSST: false, type: 'blob'});
saveAs(wbOut, 'test.xlsx');