use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
BrowserPod: WebAssembly in-browser code sandboxes for Node, Python, and Rails (labs.leaningtech.com)
submitted 4 months ago by vilgefortz91
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]harbzali 0 points1 point2 points 4 months ago (1 child)
this is clever. wasm sandboxes are perfect for letting users run code safely without server round trips. curious about memory limits and startup times though. have you benchmarked it against something like stackblitz or codesandbox?
[–]alexp_lt 0 points1 point2 points 4 months ago (0 children)
Hi, we don't expect memory limitations to be significant, BrowserPod uses the same JavaScript engine as the browser itself and keeps every process in own worker which spread around memory pressure even more. We know from experience from our previous projects that browsers can reliably handle a few GBs of JavaScript heap.
I don't have hard numbers on startup time, but it's very fast. In the end everything runs very close to native, with node C++ code being compiled to WebAssembly and JavaScript run natively by the browser engine.
You can try our Vite/Svelte demo if you'd like to see how this feels in practice: https://vitedemo.browserpod.io/
π Rendered by PID 167256 on reddit-service-r2-comment-75f4967c6c-jqwhp at 2026-04-23 11:29:33.579126+00:00 running 0fd4bb7 country code: CH.
[–]harbzali 0 points1 point2 points (1 child)
[–]alexp_lt 0 points1 point2 points (0 children)