sheetjs/demos/browserify
SheetJS 7149728c7c version bump 0.12.4: zip cleanup
- PK magic number bound (fixes #1013 h/t @wlpeter)
- removed JSZip conflict (fixes #1017 h/t @seanmars)
- updated CFB to 1.0.5
- demo HTML conversion `string`
2018-03-05 19:34:04 -05:00
..
.gitignore demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
Makefile demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
README.md demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
app.js version bump 0.12.4: zip cleanup 2018-03-05 19:34:04 -05:00
browserify.html demo refresh [ci skip] 2017-09-24 19:40:09 -04:00
xlsxworker.js demo refresh [ci skip] 2017-09-24 19:40:09 -04:00

Browserify

The library is compatible with Browserify and should just work out of the box.

This demo uses the require form to expose the whole library, enabling client code to access the library with var XLSX = require('xlsx'). The JS code from the root demo was moved to a separate app.js script. That script is bundled:

browserify app.js > browserify.js
uglifyjs browserify.js > browserify.min.js

Worker Scripts

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

-importScripts('dist/xlsx.full.min.js');
+var XLSX = require('xlsx');

The same process generates the worker script:

browserify xlsxworker.js > worker.js
uglifyjs worker.js > worker.min.js

Analytics