diff --git a/pages/common/d8.md b/pages/common/d8.md new file mode 100644 index 000000000..5ab4d259a --- /dev/null +++ b/pages/common/d8.md @@ -0,0 +1,16 @@ +# d8 + +> Developer shell for the V8 JavaScript engine. +> More information: . + +- Start a REPL (interactive shell): + +`d8` + +- Run a JavaScript file: + +`d8 {{path/to/file.js}}` + +- Evaluate a JavaScript expression: + +`d8 -e "{{code}}`