We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After #1801, the wasm node decompresses the smoldot wasm bytecode before executing it. This is done with the pako library.
pako
NodeJS has https://nodejs.org/api/zlib.html, but browsers don't have any equivalent yet. However I see that https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream is in progress. If one day it is available then we should make use of it.
The text was updated successfully, but these errors were encountered:
After #2519 it will be possible to use the NodeJS native API and the Deno native API. Only browsers will need to do the decompression using JS code.
Sorry, something went wrong.
cc https://mozilla.github.io/standards-positions/#compression-streams
No branches or pull requests
After #1801, the wasm node decompresses the smoldot wasm bytecode before executing it.
This is done with the
pako
library.NodeJS has https://nodejs.org/api/zlib.html, but browsers don't have any equivalent yet.
However I see that https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream is in progress.
If one day it is available then we should make use of it.
The text was updated successfully, but these errors were encountered: