-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
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
Is Deno still supported in the new sdk #340
Labels
linear
Created by Linear-GitHub Sync
Comments
We have not taken a look yet (it's the early days of the SDK), but we'd love to support Deno on the Wasmer JS SDK as well! |
cool! just for reference wasmpack does support deno as a target, so maybe its not that hard to add it back |
Using deno npm compat, also doesn't work import * as wasm from "npm:@wasmer/sdk";
await wasm.init();
|
The current state: import { init, Wasmer } from "npm:@wasmer/[email protected]";
await init();
const pkg = await Wasmer.fromRegistry("python/python");
const instance = await pkg.entrypoint.run({
args: ["-c", "print('Hello, World!')"],
});
const { code, stdout } = await instance.wait();
console.log(`Python exited with ${code}: ${stdout}`); deno 2.1.4
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: