Remix.run Logo
codedokode 3 days ago

While deno has sandboxing, it also has potential access to hundreds of dangerous functions, it might be better just to write a tiny wrapper around JS engine that adds only the function to write to stdout.

AbuAssar 3 days ago | parent [-]

Deno blocks by default the access to network, storage and environment variables

codedokode 3 days ago | parent [-]

JS interpreter doesn't have the access at all - it is provided by native functions, added by the wrapper like deno, so there is nothing to block.