denoland/deno
Fork: 6064 Star: 107009 (更新于 2026-06-10 03:25:39)
license: MIT
Language: Rust .
最后发布版本: v2.7.14 ( 2026-04-29 00:49:55)
A modern runtime for JavaScript and TypeScript.
Deno
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.
最近版本更新:(数据更新于 2026-05-14 18:51:55)
2026-04-29 00:49:55 v2.7.14
2026-04-22 21:26:47 v2.7.13
2026-04-10 04:35:29 v2.7.12
2026-04-01 20:45:08 v2.7.11
2026-03-31 23:09:24 v2.7.10
2026-03-27 20:54:54 v2.7.9
2026-03-26 00:11:12 v2.7.8
2026-03-19 21:52:21 v2.7.7
2026-03-18 20:09:26 v2.7.6
2026-03-11 20:40:10 v2.7.5
主题(topics):
rust typescript javascript deno
denoland/deno同语言 Rust最近更新仓库
2026-06-10 08:57:21 superradcompany/microsandbox
2026-06-10 06:30:45 raphamorim/rio
2026-06-10 06:07:52 0xPlaygrounds/rig
2026-06-09 23:36:12 ruvnet/RuView
2026-06-09 22:47:20 rustfs/rustfs
2026-06-09 17:53:40 tursodatabase/turso