1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 13:59:01 -05:00
A modern runtime for JavaScript and TypeScript. https://deno.com/
Find a file
2022-07-05 09:49:54 -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 ci: use a known good version of deno instead of latest in publish scripts (#15037) 2022-07-05 09:49:52 -04:00
bench_util 1.23.2 (#15024) 2022-06-30 15:31:47 -04:00
cli fix(cli): handle collecting a directory with file:// (#15002) 2022-07-05 09:49:54 -04:00
core chore: use Rust 1.62.0 (#15028) 2022-07-05 09:49:51 -04:00
docs
ext perf(ext/http): remove accept_encoding interior mutability (#15070) 2022-07-05 09:49:54 -04:00
ops perf(ops): fast path for SMI return values (#15033) 2022-07-05 09:49:52 -04:00
runtime 1.23.2 (#15024) 2022-06-30 15:31:47 -04:00
serde_v8 perf(serde_v8): avoid extra is_array_buffer_view check (#15056) 2022-07-05 09:49:52 -04:00
snapshots 1.23.2 (#15024) 2022-06-30 15:31:47 -04:00
test_ffi fix(ext/ffi): Empty buffers error with index out of bounds on FFI (#14997) 2022-06-30 14:13:35 -04:00
test_util fix(ext/web): remove ErrorEventInit's error default (#14809) 2022-06-30 14:13:35 -04:00
third_party@4fd74a381b chore: upgrade to dprint 0.30.2 internally (#15061) 2022-07-05 09:49:52 -04:00
tools fix: update to TypeScript 4.7.4 (#15022) 2022-07-05 09:49:53 -04:00
.dlint.json
.dprint.json chore: upgrade to dprint 0.30.2 internally (#15061) 2022-07-05 09:49:52 -04:00
.editorconfig
.gitattributes
.gitignore refactor(bench): continuous benchmarking improvements (#14821) 2022-06-30 14:12:32 -04:00
.gitmodules
.rustfmt.toml
Cargo.lock 1.23.2 (#15024) 2022-06-30 15:31:47 -04:00
Cargo.toml perf(ext/web): use base64-simd for atob/btoa (#14992) 2022-06-30 14:13:36 -04:00
CODE_OF_CONDUCT.md
LICENSE.md
README.md
Releases.md 1.23.2 (#15024) 2022-06-30 15:31:47 -04:00
rust-toolchain.toml chore: use Rust 1.62.0 (#15028) 2022-07-05 09:49:51 -04: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.