summaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
Diffstat (limited to 'std')
-rw-r--r--std/manual.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/std/manual.md b/std/manual.md
index 2582184ed..4af56d7c3 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -764,9 +764,15 @@ source /usr/local/etc/bash_completion.d/deno.bash
### V8 flags
-V8 has many many internal command-line flags, that you can see with
-`--v8-options`.
-[It looks like this.](https://gist.github.com/ry/a610ce48cba2f0225f9c81a5a833fc87)
+V8 has many many internal command-line flags.
+
+```shell
+# list available v8 flags
+$ deno --v8-flags=--help
+
+# example for applying multiple flags
+$ deno --v8-flags=--expose-gc,--use-strict
+```
Particularly useful ones: