Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
1–10 of 44 posts
Re: Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
#2Even though our product was not a commercial success ~3 yrs ago I still believe something like this should succeed and give people choice when it comes to isolation/virtualization (containers, microVMs, Wasm). They are each useful and appropriate for different things.
Re: Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
#3If someone feels like an eli5 - What are the use-cases for something like this?
Re: Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
#4Re: Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
#5Loving the customer testimonials :D .. If someone feels like an eli5 - What are the use-cases for something like this?
JavaScript alone can't handle that kind of heavy lifting efficiently. That’s where Wasm comes in. It lets you run high-performance native code (like C++) at near-native speed safely in the sandbox.
For example, I'm currently using Wasm to run a complex 3D geometry engine (Manifold) inside a lightweight CAD app (Nasscad). It gives you web flexibility with desktop power.
Re: Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers
#6Loving the customer testimonials :D .. If someone feels like an eli5 - What are the use-cases for something like this?
ELI5: Imagine you want to run a heavy, powerful 3D video game engine inside a standard web browser or a lightweight desktop app, without making it slow or unsafe. JavaScript alone can't handle that kind of heavy lifting efficiently. That’s where Wasm comes in. It lets you run high-performance native code (like C++) at near-native speed safely in the sandbox. For example, I'm currently using Wasm to run a complex 3D g…