Back to Denoland

Welcome to Deno

runtime/index.md

latest2.3 KB
Original Source

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.

Why Deno?

Quick install

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>
sh
curl -fsSL https://deno.land/install.sh | sh
</deno-tab> <deno-tab value="windows" label="Windows">

In Windows PowerShell:

powershell
irm https://deno.land/install.ps1 | iex
</deno-tab> <deno-tab value="linux" label="Linux">
sh
curl -fsSL https://deno.land/install.sh | sh
</deno-tab> </deno-tabs>

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:

sh
deno --version

First steps

Deno can run JavaScript and TypeScript with no additional tools or configuration required, all in a secure, batteries-included runtime.