0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 05:36:49 -04:00
A modern runtime for JavaScript and TypeScript. https://deno.com/
Find a file
2022-06-30 14:13:35 -04:00
.cargo chore: rename .cargo/config to .cargo/config.toml (#14959) 2022-06-30 14:12:32 -04:00
.devcontainer chore: update devcontainer to a modern tag (#14792) 2022-06-04 01:40:45 +02:00
.github refactor(bench): continuous benchmarking improvements (#14821) 2022-06-30 14:12:32 -04:00
bench_util refactor(bench): continuous benchmarking improvements (#14821) 2022-06-30 14:12:32 -04:00
cli fix(ext/web): remove ErrorEventInit's error default (#14809) 2022-06-30 14:13:35 -04:00
core feat(ext/ffi): Thread safe callbacks (#14942) 2022-06-30 14:12:32 -04:00
docs
ext fix(ext/web): remove ErrorEventInit's error default (#14809) 2022-06-30 14:13:35 -04:00
ops 1.23.1 (#14952) 2022-06-23 13:50:44 -06:00
runtime fix(test): typo ('finsihed') if text decoder not closed during test (#14996) 2022-06-30 14:13:35 -04:00
serde_v8 build: require safety comments on unsafe code (#13870) 2022-06-30 14:12:31 -04:00
snapshots refactor(snapshots): to their own crate (#14794) 2022-06-30 14:12:31 -04:00
test_ffi feat(ext/ffi): Thread safe callbacks (#14942) 2022-06-30 14:12:32 -04:00
test_util fix(ext/web): remove ErrorEventInit's error default (#14809) 2022-06-30 14:13:35 -04:00
third_party@6e290feb09 chore(cli/bench): Add bun HTTP server (#15004) 2022-06-30 14:13:35 -04:00
tools fix(ext/web): remove ErrorEventInit's error default (#14809) 2022-06-30 14:13:35 -04:00
.dlint.json
.dprint.json fix: upgrade swc via deno_ast 0.16 (#14930) 2022-06-22 15:42:08 -04:00
.editorconfig
.gitattributes
.gitignore refactor(bench): continuous benchmarking improvements (#14821) 2022-06-30 14:12:32 -04:00
.gitmodules
.rustfmt.toml
Cargo.lock refactor(bench): continuous benchmarking improvements (#14821) 2022-06-30 14:12:32 -04:00
Cargo.toml refactor(snapshots): to their own crate (#14794) 2022-06-30 14:12:31 -04:00
CODE_OF_CONDUCT.md
LICENSE.md
README.md docs(README): update urls of shell and powershell deno script installers (#13844) 2022-03-08 01:53:15 +01:00
Releases.md 1.23.1 (#14952) 2022-06-23 13:50:44 -06:00
rust-toolchain.toml chore: use rust 1.61.0 (#14911) 2022-06-19 12:01:34 -03:00
SECURITY.md

Deno

Build Status - Cirrus Twitter handle Discord Chat

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

  • Secure by default. No file, network, or environment access, unless explicitly enabled.
  • Supports TypeScript out of the box.
  • Ships only a single executable file.
  • Built-in utilities.
  • Set of reviewed standard modules that are guaranteed to work with Deno.

Install

Shell (Mac, Linux):

curl -fsSL https://deno.land/install.sh | sh

PowerShell (Windows):

iwr https://deno.land/install.ps1 -useb | 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 a more complex one:

const listener = Deno.listen({ port: 8000 });
console.log("http://localhost:8000/");

for await (const conn of listener) {
  serve(conn);
}

async function serve(conn: Deno.Conn) {
  for await (const { respondWith } of Deno.serveHttp(conn)) {
    respondWith(new Response("Hello world"));
  }
}

You can find a deeper introduction, examples, and environment setup guides in the manual.

The complete API reference is available at the runtime documentation.

Contributing

We appreciate your help!

To contribute, please read our contributing instructions.