sheetjs/demos/meteor
SheetJS ce37f99ec3 version bump 0.10.9: pin dependencies
- updated SSF 0.10.0, codepage 1.10.1, CFB 0.12.0, CRC32 / ADLER32 1.1.0
- pinned all devDependencies (fixes #740 h/t @the-spyke)
- flow type updates
- clarified meteor usage (fixes #751 h/t @NorthDecoder)
2017-07-28 19:27:16 -04:00
..
client meteor example [ci skip] 2017-05-24 18:52:35 -04:00
server meteor example [ci skip] 2017-05-24 18:52:35 -04:00
.gitignore meteor example [ci skip] 2017-05-24 18:52:35 -04:00
Makefile meteor example [ci skip] 2017-05-24 18:52:35 -04:00
README.md version bump 0.10.9: pin dependencies 2017-07-28 19:27:16 -04:00
package.json meteor example [ci skip] 2017-05-24 18:52:35 -04:00

Meteor

This library is universal: outside of environment-specific features (parsing DOM tables in the browser, streaming write in nodejs), the core is ES3/ES5 and can be used in any reasonably compliant JS implementation. It should play nice with meteor out of the box.

This demonstration

You can split the work between the client and server side as you see fit. The obvious extremes of pure-client code and pure-server code are straightforward. This demo tries to split the work to demonstrate that the workbook object can be passed on the wire.

The read demo:

  • accepts files from the client side
  • sends binary string to server
  • processes data on server side
  • sends workbook object to client
  • renders HTML and adds to a DOM element

The write demo:

  • generates workbook on server side
  • sends workbook object to client
  • generates file on client side
  • triggers a download.

This demo uses the FileSaver.js library for writing files, installed through the pfafman:filesaver wrapper:

meteor add pfafman:filesaver

Setup

This tree does not include the .meteor structure. Rebuild the project with:

meteor create .
npm install babel-runtime meteor-node-stubs xlsx
meteor add pfafman:filesaver
meteor

Environment-specific features

File-related operations (e.g. XLSX.readFile and XLSX.writeFile) will not be available in client-side code. If you need to read a local file from the client, use a file input or drag-and-drop.

Browser-specific operations (e.g. XLSX.utils.table_to_book) are limited to client side code. You should never have to read from DOM elements on the server side, but you can use a third-party virtual DOM to provide the required API.