Skip to main content
On this page

Welcome to Deno

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? Jump to heading

Quick install Jump to heading

Install the Deno runtime on your system using one of the terminal commands below:

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

First steps Jump to heading

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

Did you find what you needed?

Privacy policy