deno
all
A secure runtime for JavaScript, TypeScript, and WebAssembly. Includes dependency management using `npm` or `jsr`, and tooling like bench, bundle, doc, and coverage.
More info →Options (1)
--allow-envbooleanRun a file with explicit permissions or allow all (only if you trust the source)
Example:
deno run {{[--allow-env|--allow-net|--allow-write|--allow-all]}} {{jsr:@deno/deployctl}}Examples (8)
Start a REPL (interactive shell, also known as Read-Eval-Print Loop)
Run a file securely. It will ask (if needed) to allow net, read, etc
deno run path/to/file.tsRun a file with explicit permissions or allow all (only if you trust the source)
deno run [--allow-env|--allow-net|--allow-write|--allow-all] jsr:@deno/deployctlCompile the script, imported dependencies, and runtime into a self contained executable
deno compile path/to/file.tsmade by @shridhargupta | data from tldr-pages