Hacker News new | ask | show | jobs
by Sonata 2340 days ago
This sounds similar to how Cloudflare Workers work - using the V8 isolate technology built for Chrome to provide secure isolation of backend processes without the overhead of VMs or even containers.
1 comments

Yes. This is something like Cloudflare Workers (except we built a deep embedding of V8 rather than relying on the browser infrastructure).

https://workers.cloudflare.com/

Plus we have a distributed KV store to go with the code execution environment.

Our main reason for relying on the full browser is to not be tied to a specific browser engine, and to be able to benefit from browser security updates really easily, but there are obviously some challenges to this approach.
Makes sense. Certainly not dissing your approach!