Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Can anyone get the actual JavaScript example posted to work with Node or any JS runtime for that matter?

I tried it with Bun and I feel weird showing examples that don't seem to run.

> $ npm install @wasmer/sdk

```js import { Wasmer } from "@wasmer/sdk";

let cowsay = Wasmer.fromRegistry("cowsay"); let instance = await cowsay.entrypoint.run({ args: "\"Hello world\"" }); let output = await instance.wait(); ```

I also tried to use the <script> approach and I cannot get it working on a local dev server due to CORS.



Finally got this working. I was unable to get this to play well with Node or Bun but I did get the <script> approach working.

For the CORS with Vite you can just set a config like so in vite.config.ts

import { defineConfig } from "vite";

export default defineConfig({ server: { headers: { "Cross-Origin-Embedder-Policy": "require-corp", "Cross-Origin-Opener-Policy": "same-origin", }, }, });

I was then able to just use this code example with one caveat (https://github.com/wasmerio/wasmer-js?tab=readme-ov-file#use...)

I had to update the SDK import with crossorigin="anonymous"


Doing some more due diligence: https://docs.wasmer.io/javascript-sdk <-- this is the one source of truth on the docs.

Seems like they still have to update their stuff a fair few places...

Now I'm just struggling to use the package registry, none of the copy and paste examples have worked for me, but I'm sure I can figure it out. Will post here if I do.


Note: I tried it with both Bun and Node, neither worked.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: