2024-07-01 03:59:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# https://docs.sheetjs.com/docs/demos/bigdata/stream#nodejs
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
rm -rf sheetjs-stream
|
|
|
|
|
|
|
|
mkdir sheetjs-stream
|
|
|
|
cd sheetjs-stream
|
|
|
|
|
2024-07-18 22:19:02 +00:00
|
|
|
npm i --save https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz
|
2024-07-01 03:59:01 +00:00
|
|
|
|
|
|
|
curl -LO https://docs.sheetjs.com/stream/SheetJSNodeJStream.js
|
|
|
|
|
|
|
|
curl -LO https://docs.sheetjs.com/pres.xlsx
|
|
|
|
|
|
|
|
# this version uses `n` to cycle through node versions
|
|
|
|
for n in 0.12 4 6 8 10 12 14 16 18 20 22; do
|
|
|
|
sudo n $n
|
|
|
|
node --version
|
|
|
|
node SheetJSNodeJStream.js pres.xlsx
|
|
|
|
done
|