A modern runtime for JavaScript and TypeScript.
Find a file
David Sherret e9d6557ea5
Some checks are pending
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
chore: try to fix promote_to_release workflow (#31215)
2025-11-12 17:12:21 -05:00
.cargo ci: fix Windows build (#30816) 2025-09-23 00:31:14 +00:00
.devcontainer feat(ext/fetch): add support for fetch on unix sockets (#29154) 2025-05-13 18:06:17 +02:00
.github chore: try to fix promote_to_release workflow (#31215) 2025-11-12 17:12:21 -05:00
bench_util 2.5.6 (#31136) 2025-10-29 23:50:18 +00:00
cli feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00
docs feat(unstable): typescript-go integration for deno check (#30920) 2025-10-20 09:59:54 -07:00
ext feat(cli): filter out common internal frames that add noise, dim and grey internal frames in stack traces (#31247) 2025-11-12 07:40:40 -08:00
libs feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00
runtime feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00
tests fix(unstable): don't panic on invalid reported lint range (#31261) 2025-11-12 15:11:40 +01:00
tools chore: try to fix promote_to_release workflow (#31215) 2025-11-12 17:12:21 -05:00
.dlint.json chore: enable no-console dlint rule (#25113) 2024-08-20 15:14:37 -04:00
.dprint.json fix(fmt/json): support hexadecimal numbers, plus sign on numbers, and words with underscores (#31057) 2025-10-22 16:54:29 -04:00
.editorconfig chore(tests): Remove vestiges of cli/tests folder (#22712) 2024-03-05 13:49:21 -07:00
.gitattributes chore: move cli/tests/ -> tests/ (#22369) 2024-02-10 20:22:13 +00:00
.gitignore feat(bundle, unstable): bundling backed by esbuild (#29470) 2025-06-07 21:20:10 +02:00
.gitmodules chore(ext/node): reorg node compat test CI check (#29893) 2025-06-27 21:06:18 +09:00
.rustfmt.toml chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
Cargo.lock feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00
Cargo.toml feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00
CLAUDE.md chore: allow triggering pr generation manually, tweak pr generation workflow, add claude.md (#31217) 2025-11-06 20:24:40 +00:00
fail.txt feat(cli): print working dir in grey in stack traces, relative paths in check + compile output (#31194) 2025-11-06 20:38:25 +00:00
import_map.json chore: update submodule std version (#30676) 2025-09-11 17:48:32 +09:00
LICENSE.md chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
README.md chore: update "Build from source" link in README (#29258) 2025-05-12 15:41:53 +09:00
Releases.md 2.5.6 (#31136) 2025-10-29 23:50:18 +00:00
rust-toolchain.toml chore: upgrade to Rust 1.90 (#30793) 2025-09-29 15:16:55 -04:00
test_simple_ordering.pdb feat(permissions): allow flags should override deny when more specific (#31224) 2025-11-12 21:28:45 +00:00

Deno

Twitter badge Bluesky 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

WinGet (Windows):

winget install --id=DenoLand.Deno

Build and install from source

Complete instructions for building Deno from source can be found 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

  • Deno Docs: official guides and reference docs for the Deno runtime, Deno Deploy, and beyond.
  • Deno Standard Library: officially supported common utilities for Deno programs.
  • JSR: The open-source package registry for modern JavaScript and TypeScript
  • Developer Blog: Product updates, tutorials, and more from the Deno team.

Contributing

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