Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A modern runtime for JavaScript and TypeScript.

License

NotificationsYou must be signed in to change notification settings

denoland/deno

Repository files navigation

Twitter badgeDiscord badgeYouTube badge

the deno mascot dinosaur standing in the rain

Deno(/ˈdiːnoʊ/, pronounceddee-no) is a JavaScript, TypeScript, and WebAssembly runtime with securedefaults and a great developer experience. It's built onV8,Rust, andTokio.

Learn more about the Deno runtimein the documentation.

Installation

Install the Deno runtime on your system using one of the commands below. Notethat there are a number of ways to install Deno - a comprehensive list ofinstallation options can be foundhere.

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 in the manualhere.

Your first Deno program

Deno can be used for many different applications, but is most commonly used tobuild web servers. Create a file calledserver.ts and include the followingTypeScript code:

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

Run your server with the following command:

deno run --allow-net server.ts

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

Learn more about writing and running Deno programsin the docs.

Additional resources

Contributing

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


[8]ページ先頭

©2009-2025 Movatter.jp