xlsx.io_blobdeprecated

Adds support for blob as the writing output type.

Usage no npm install needed!

<script type="module">
  import xlsxIoBlob from 'https://cdn.skypack.dev/xlsx.io_blob';
</script>

README

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');