tyson

Results 11 comments of tyson

Stretch - [ ] Backend On Frontend - dynamically distribute workload to browsers, phones, drones, pi, whatever - [ ] Sandbox cloud - ephemeral & persistent wasm runtime stack vm...

Got this to work after removing http and sockets libs and setting target to wasm23-u-u. Then setting `[dependencies]` of Cargo.toml of the worker template to: `wasmedge_quickjs = { git =...

Almost...need to get rid of imports / provide impl for some std libs... https://github.com/tysonrm/rustwasm-worker-template ```rs use serde_json::json; use wasmedge_quickjs::*; use worker::*; mod utils; fn js_hello(ctx: &mut Context) { println!("\n"); let...

So here's a workaround: we can have a js worker instantiate quickjs and pass in a js function it can call to invoke fetch. As for the rust solution, under...

A call would be great. Thanks, Michael. Yes, the crate compiles to wasm. Our goal right now is the latter. That said, they are also looking at supporting a [wasm...

Sorry for the long delay. The code at [this link](https://github.com/module-federation/aegis/blob/1552fd01af1ac617c1d9f7d8b2e9cf77df63950e/src/adapters/webassembly/wasm-import.js#L63) shows Node.js instantiating a wasm module whose imports include a function that publishes events to an event broke nning in...

I have a related question: currently the [module federation backend framework](https://github.com/module-federation/aegis) (written largely in JS and running on Node.js) streams code directly from its source repo, compiles and loads into...

With TS to AS linter you could things like `deno -run_as_wasm code.ts`

Instructions on how to use this tool are badly needed! Would love to use it. Just dont have time to figure it out.