A modern runtime for JavaScript and TypeScript.
Go to file
2021-03-15 09:19:27 +11:00
.cargo
.github ci: don't store $CARGO_HOME in Github Actions cache (#9779) 2021-03-13 15:25:26 -05:00
cli fix(cli/module_graph): Set useDefineForClassFields to true (#9774) 2021-03-15 09:19:27 +11:00
core chore: upgrade to tokio 1.3.0 (#9778) 2021-03-14 10:03:24 -04:00
docs fix(fmt): Correctly format hard breaks in markdown (#9742) 2021-03-10 08:17:24 -05:00
op_crates chore: upgrade to tokio 1.3.0 (#9778) 2021-03-14 10:03:24 -04:00
runtime fix(runtime): do not require deno namespace in workers for crypto (#9784) 2021-03-14 20:01:55 +01:00
test_plugin
test_util chore: upgrade to tokio 1.3.0 (#9778) 2021-03-14 10:03:24 -04:00
third_party@72f5f1a9fa
tools chore: upgrade crates (#9632) 2021-03-02 13:39:56 +01:00
.dlint.json
.dprintrc.json fix(fmt): Correctly format hard breaks in markdown (#9742) 2021-03-10 08:17:24 -05:00
.editorconfig
.gitattributes
.gitignore
.gitmodules
.rustfmt.toml
Cargo.lock chore: upgrade to tokio 1.3.0 (#9778) 2021-03-14 10:03:24 -04:00
Cargo.toml chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
CODE_OF_CONDUCT.md
LICENSE.md
README.md
Releases.md v1.8.1 2021-03-09 21:55:44 +01:00

Deno

Build Status - Cirrus Twitter handle

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 like a dependency inspector (deno info) and a code formatter (deno fmt).
  • Set of reviewed standard modules that are guaranteed to work with Deno.

Install

Shell (Mac, Linux):

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

PowerShell (Windows):

iwr https://deno.land/x/install/install.ps1 -useb | iex

Homebrew (Mac):

brew install deno

Chocolatey (Windows):

choco install deno

Build and install from source using Cargo:

cargo install deno

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:

import { serve } from "https://deno.land/std/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
  req.respond({ body: "Hello World\n" });
}

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

More in-depth info can be found in the runtime documentation.

Contributing

We appreciate your help!

To contribute, please read our guidelines.