A modern runtime for JavaScript and TypeScript.
Go to file
David Sherret 8cdb309ffd
fix(check): properly surface dependency errors in types file of js file (#25860)
We weren't surfacing dependency errors in types files of js files.
2024-09-25 09:04:57 -04:00
.cargo
.devcontainer
.github ci: increase timeout to 180 minutes (#25750) 2024-09-20 00:05:20 +00:00
bench_util chore: forward v1.46.3 release commit to main (#25425) 2024-09-04 17:16:24 +00:00
cli fix(check): properly surface dependency errors in types file of js file (#25860) 2024-09-25 09:04:57 -04:00
ext fix(ext/node): Fix vm sandbox object panic (#24985) 2024-09-24 15:47:13 +05:30
runtime fix: better error for Deno.UnsafeWindowSurface, correct HttpClient name, cleanup unused code (#25833) 2024-09-24 07:04:52 -07:00
tests fix(check): properly surface dependency errors in types file of js file (#25860) 2024-09-25 09:04:57 -04:00
tools refactor: reenable more tests after DENO_FUTURE migration (#25752) 2024-09-24 03:33:03 +02:00
.dlint.json
.dprint.json feat: default to TS for file extension and support ext flag in more scenarios (#25472) 2024-09-18 21:15:13 +02:00
.editorconfig
.gitattributes
.gitignore
.gitmodules
.rustfmt.toml
Cargo.lock fix(check): properly surface dependency errors in types file of js file (#25860) 2024-09-25 09:04:57 -04:00
Cargo.toml perf(ext/fetch): improve decompression throughput by upgrading tower_http (#25806) 2024-09-23 18:16:34 -07:00
import_map.json chore: update std submodule (#25595) 2024-09-12 22:32:09 +10:00
LICENSE.md
README.md
Releases.md chore: forward v1.46.3 release commit to main (#25425) 2024-09-04 17:16:24 +00:00
rust-toolchain.toml

Deno

Twitter badge Discord badge YouTube badge

the deno mascot dinosaur standing in the rain

Deno (/ˈdiːnoʊ/, pronounced dee-no) is a JavaScript, TypeScript, and WebAssembly runtime with secure defaults and a great developer experience. It's built on V8, Rust, and Tokio.

Learn more about the Deno runtime in the documentation.

Installation

Install the Deno runtime on your system using one of the commands below. Note that there are a number of ways to install Deno - a comprehensive list of installation options can be found here.

Shell (Mac, Linux):

curl -fsSL https://deno.land/install.sh | sh

PowerShell (Windows):

irm https://deno.land/install.ps1 | iex

Homebrew (Mac):

brew install deno

Chocolatey (Windows):

choco install deno

Build and install from source

Complete instructions for building Deno from source can be found in the manual here.

Your first Deno program

Deno can be used for many different applications, but is most commonly used to build web servers. Create a file called server.ts and include the following TypeScript code:

Deno.serve((_req: Request) => {
  return new Response("Hello, world!");
});

Run your server with the following command:

deno run --allow-net server.ts

This should start a local web server on http://localhost:8000.

Learn more about writing and running Deno programs in the docs.

Additional resources

Contributing

We appreciate your help! To contribute, please read our contributing instructions.