eval script with stricter permissions in deno
Hi all, I wanted to know if its possible to eval a script in deno with more strict permissions. Something like
vm.runInNewContext
in node. At best, I think I can use Deno.Command('deno', {args: ['run', 'user-script.ts']})
right now. However, that means allowing any deno process to be ran at any time from the parent script. I am wondering if there is any way to specifically run a script with a subset of the permissions allowed to the parent script0 Replies