2024-07-18 22:19:02 +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
|
|
|
|
|
|
2026-01-29 04:58:19 +00:00
|
|
|
bun init -y
|
2024-07-18 22:19:02 +00:00
|
|
|
bun i xlsx@https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz
|
|
|
|
|
|
|
|
|
|
curl -LO https://docs.sheetjs.com/stream/SheetJSNodeJStream.js
|
|
|
|
|
curl -LO https://docs.sheetjs.com/pres.xlsx
|
|
|
|
|
|
|
|
|
|
bun --version
|
|
|
|
|
bun SheetJSNodeJStream.js pres.xlsx
|