MCPcopy Index your code
hub / github.com/denoland/deno

github.com/denoland/deno @v2.9.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.9.1 ↗ · + Follow
41,613 symbols 168,993 edges 5,929 files 6,659 documented · 16%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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

Scoop (Windows):

scoop install main/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.

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Function 17,043
Method 15,128
Class 5,082
Interface 3,167
Enum 1,193

Languages

Rust57%
TypeScript43%
C1%
C++1%
C#1%

Modules by API surface

cli/tsc/dts/typescript.d.ts1,910 symbols
cli/tsc/dts/lib.webworker.d.ts1,571 symbols
ext/node/polyfills/internal/errors.ts914 symbols
cli/args/flags.rs522 symbols
cli/tsc/dts/lib.es5.d.ts506 symbols
ext/web/06_streams.js400 symbols
runtime/permissions/lib.rs343 symbols
tests/integration/lsp_tests.rs296 symbols
libs/config/workspace/mod.rs286 symbols
cli/tsc/dts/lib.deno.unstable.d.ts257 symbols
cli/lsp/tsc.rs247 symbols
ext/http/http_next.rs220 symbols

For agents

$ claude mcp add deno \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page