1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/common/d8.md
2021-09-22 08:58:11 -03:00

16 lines
251 B
Markdown

# d8
> Developer shell for the V8 JavaScript engine.
> More information: <https://v8.dev/docs/d8>.
- Start a REPL (interactive shell):
`d8`
- Run a JavaScript file:
`d8 {{path/to/file.js}}`
- Evaluate a JavaScript expression:
`d8 -e "{{code}}`