Quest for Codev2.0.0
/
♥106.6k◈6.0k◆2.2k⬡100
SIGN IN

Adventurer Status

LVL 1751k / 66k XP
HP
♥♥♥♥♥♥♥♥♥♥
107k/107k
MP
6.0k/6.0k
EXP
51k/66k

Repository Inventory

⭐Stars106,612
🍴Forks6,040
👁Watchers1,380
🐛Issues2,171
🔀Pull Requests100

Guild Menu

  • 📋Overview
  • 📦Repositories
  • 📊Projects
  • 📦Packages
  • 🏛Organizations
  • ⚙Settings

denoland/deno

public
👁Watch1,380
⭐Star106,612
🍴Fork6,040
🌿 321 Branches🏷 430 Tags
Go to file◇ Code ▾
emfix(ext/node): pass URL to kOnHeadersComplete when request has no headers (#33831)✓16fff7d43m ago📝 11,497
📁.cargo—

About

A modern runtime for JavaScript and TypeScript.

denojavascriptrusttypescript
📋MIT License
👥18 Contributors
PIP-80/13TERMINAL LINK
📁.devcontainer—
📁.github—
📁cli—
📁ext—
📁libs—
📁runtime—
📁tests—
📁tools—
⚙️.dlint.json—
⚙️.dprint.json—
📄.editorconfig—
🔧.gitattributes—
🔧.gitignore—
🔧.gitmodules—
⚙️.rustfmt.toml—
📄Cargo.lock—
⚙️Cargo.toml—
📜CLAUDE.md—
📄flake.lock—
📄flake.nix—
⚙️import_map.json—
📋LICENSE.md—
📜README.md—
📜Releases.md—
⚙️rust-toolchain.toml—
📄x—

README.md

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.

Rust
59.1%
TypeScript28.2%
JavaScript11.2%
C1.5%
CSS0.0%
Nix0.0%

Contributions

2,265 contributions in the last year

Less
More

Commit Log — Terminal

>18:04:59emfix(ext/node): pass URL to kOnHeadersComplete when request has no headers (#33831)
>15:42:56Bartek Iwańczukfeat: include node lib by default and use NodeJS.Timeout for timers (#33823)
>15:36:24Bartek Iwańczukfix: include node lib by default and use NodeJS.Timeout for timers (#33823)
>15:35:55Hunnyboy1217fix(ext/node): accept CryptoKey input in createPublicKey/createPrivat… (#33750)
>15:35:09Bartek Iwańczukperf(ext/node): convert errors.ts, util.mjs, and foundation layer to lazy-loaded scripts (#33830)
>14:31:35Bartek Iwańczukci: disable flaky Node compat test (#33833)
>14:09:51emfix(ext/node): support AES-128-ECB cipher for PKCS#8 private key encryption and decryption (#33809)
>14:00:38emfix(ext/node): implement noDelay property on net.Server and apply TCP_NODELAY to accepted (#33828)
>13:21:48emfix(ext/node): enable test-crypto-sign-verify node compat test (#33810)
>13:12:19Michael Horstmannfix(ext/node): fix module resolution for nested package.json files (#33767)