balatro-aij-web
v1.0.4
Published
split
Readme
balatro-web-singlefile
The single-file browser build, split into four byte-exact parts so each stays under jsDelivr's 20 MB per-file limit.
| file | bytes |
|---|---|
| balatro_singlefile.html.part1 | 15,623,740 |
| balatro_singlefile.html.part2 | 15,623,740 |
| balatro_singlefile.html.part3 | 15,623,740 |
| balatro_singlefile.html.part4 | 15,623,738 |
| joined | 62,494,958 |
SHA-256 of the joined file:
cb1cdc7416b866acfacd00bc67dbbf61939a52acbc5d1c27a75241fba550272e
Rejoin
cat balatro_singlefile.html.part1 \
balatro_singlefile.html.part2 \
balatro_singlefile.html.part3 \
balatro_singlefile.html.part4 > balatro_singlefile.htmlWindows:
copy /b part1+part2+part3+part4 balatro_singlefile.htmlThe result is a complete, dependency-free HTML document: love.js, love.wasm, the .love
package and both normalize Lua files are base64-embedded in it. Nothing else is fetched.
CDN
jsDelivr:
https://cdn.jsdelivr.net/npm/[email protected]/balatro_singlefile.html.part1unpkg:
https://unpkg.com/[email protected]/balatro_singlefile.html.part1Pin the version. @latest on jsDelivr redirects, which costs an extra round trip per part.
Notes
- Order matters; the split is a plain byte split, not line- or token-aligned.
- Parts are raw bytes of a UTF-8 document. Concatenate as binary, not as text — joining decoded strings can corrupt a multi-byte character straddling a boundary.
- The joined document saves progress through IndexedDB, which browsers block on
file://. Served over http(s) it saves normally.
