sheetjs/demos/rollup
reviewher ba3280ee8a Demos [ci skip] 2022-03-07 00:46:23 -08:00
..
.gitignore demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
Makefile XLS Unicode Property Lists [ci skip] 2021-10-02 21:41:36 -04:00
README.md Demos [ci skip] 2022-03-07 00:46:23 -08:00
app.js Demos [ci skip] 2022-03-07 00:46:23 -08:00
main.js Demos [ci skip] 2022-03-07 00:46:23 -08:00
rollup.config.js Demos [ci skip] 2022-03-07 00:46:23 -08:00
rollup.config.node.js Demos [ci skip] 2022-03-07 00:46:23 -08:00
rollup.config.worker.js Demos [ci skip] 2022-03-07 00:46:23 -08:00
rollup.html XLS Unicode Property Lists [ci skip] 2021-10-02 21:41:36 -04:00
xlsxworker.js Demos [ci skip] 2022-03-07 00:46:23 -08:00

Rollup

This library has a proper ESM build that is enabled by default:

import { read, utils } from 'xlsx';

This sample demonstrates a bundle for browser as well as for node.

This demo uses the import form to expose the whole library, enabling client code to access the library with import XLSX from 'xlsx'. The JS code from the root demo was moved to a separate app.js script.

Required Plugins

The rollup-plugin-node-resolve plugin is used:

import resolve from 'rollup-plugin-node-resolve';
export default {
	/* ... */
	plugins: [
		resolve({
			module: false, // <-- this library is not an ES6 module
			browser: true, // <-- suppress node-specific features
		})
	],
	/* ... */
};

For the browser deployments, the output format is 'iife'. For node, the output format is 'cjs'.

Worker Scripts

Rollup can also bundle worker scripts! Instead of using importScripts, the worker script should import the module:

-importScripts('dist/xlsx.full.min.js');
+import * as XLSX from 'xlsx'; // or do named imports

Analytics