runtime/index.md
Deno
(/ˈdiːnoʊ/, pronounced
dee-no) is an
open source JavaScript,
TypeScript, and WebAssembly runtime with secure defaults and a great developer
experience. It's built on V8,
Rust, and Tokio.
Install the Deno runtime on your system using one of the terminal commands below:
<deno-tabs group-id="operating-systems"> <deno-tab value="mac" label="macOS" default>curl -fsSL https://deno.land/install.sh | sh
In Windows PowerShell:
irm https://deno.land/install.ps1 | iex
curl -fsSL https://deno.land/install.sh | sh
Additional installation options can be found here.
After installation, you should have the deno executable available on your
system path. You can verify the installation by running:
deno --version
Deno can run JavaScript and TypeScript with no additional tools or configuration required, all in a secure, batteries-included runtime.