A modern runtime for JavaScript and TypeScript.
Go to file
Bartek Iwańczuk 204c46dcc1
chore: forward v1.26.2 to main (#16331)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>

<!--
Before submitting a PR, please read http://deno.land/manual/contributing

1. Give the PR a descriptive title.

  Examples of good title:
    - fix(std/http): Fix race condition in server
    - docs(console): Update docstrings
    - feat(doc): Handle nested reexports

  Examples of bad title:
    - fix #7123
    - update docs
    - fix bugs

2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
-->

Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
2022-10-17 23:11:16 +02:00
.cargo chore: fix clippy warnings (#15944) 2022-09-19 10:25:03 +02:00
.devcontainer chore: update devcontainer configuration (#15751) 2022-09-03 02:21:41 +02:00
.github fix(build): don't export all symbols to dynamic symbol table (#16171) 2022-10-06 21:20:00 +05:30
bench_util chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
cli chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
core chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
docs
ext chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
ops chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
runtime chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
serde_v8 chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
test_ffi fix(ext/ffi): Fix UnsafeCallback ref'ing making Deno enter a live-loop (#16216) 2022-10-15 19:19:46 +05:30
test_napi refactor(build): better handle old glibc (#16238) 2022-10-15 20:51:04 +05:30
test_util fix(cli/bench): skip strace table border (#16310) 2022-10-16 21:37:42 +02:00
third_party@17fd391b8f fix(npm): support compiling on linux/aarch64 (#16208) 2022-10-10 07:59:31 +05:30
tools fix(ext/fetch): set accept-encoding: identity if range header is present (#16197) 2022-10-17 15:39:41 +02:00
.dlint.json
.dprint.json refactor: move out test files from root testdata directory into sub directories (#15949) 2022-09-19 10:32:21 -04:00
.editorconfig
.gitattributes
.gitignore feat(npm): implement Node API (#13633) 2022-10-05 19:36:44 +05:30
.gitmodules feat(ext/ffi): Implement FFI fast-call trampoline with Dynasmrt (#15305) 2022-09-07 12:23:56 +05:30
.rustfmt.toml
Cargo.lock chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
Cargo.toml perf(napi): optimize primitive napi functions (#16163) 2022-10-07 16:24:01 +05:30
CODE_OF_CONDUCT.md
LICENSE.md
README.md
Releases.md chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
rust-toolchain.toml chore: use Rust 1.64.0 (#16035) 2022-09-26 21:52:16 +02: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):

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 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.