No description
Find a file
2023-07-11 02:27:22 +00:00
.cargo
.devcontainer
.github
bench_util
cli fix(lsp): remove quotes and period surrounding specifier in uncached messages (#19794) 2023-07-11 02:27:22 +00:00
ext fix(node/http): server use FakeSocket and add end method (#19660) 2023-07-10 13:48:35 +02:00
runtime chore: upgrade deno_core and rusty_v8 (#19773) 2023-07-09 22:48:47 +00:00
test_ffi
test_napi
test_util
third_party@0eb5c9cbbc
tools
.dlint.json
.dprint.json
.editorconfig
.gitattributes
.gitignore
.gitmodules
.rustfmt.toml
Cargo.lock perf: add setup cache for node_modules folder (#19787) 2023-07-10 13:42:47 -04:00
Cargo.toml chore: upgrade deno_core and rusty_v8 (#19773) 2023-07-09 22:48:47 +00:00
LICENSE.md
README.md
Releases.md
rust-toolchain.toml

Deno

Twitter badge Discord badge YouTube badge

the deno mascot dinosaur standing in the rain

Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.

Features

Install

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

Scoop (Windows):

scoop install deno

Build and install from source using Cargo:

cargo install deno --locked

See deno_install and releases for other options.

Getting Started

Try running a simple program:

deno run https://deno.land/std/examples/welcome.ts

Or setup a simple HTTP server:

import { serve } from "https://deno.land/std@0.182.0/http/server.ts";

serve((_req) => new Response("Hello, World!"));

More examples.

Additional Resources

Contributing

We appreciate your help!

To contribute, please read our contributing instructions.