1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
A modern runtime for JavaScript and TypeScript. https://deno.com/
Find a file
2020-09-30 17:22:58 +10:00
.cargo
.github build: use non xl runners outside deno repo (#7729) 2020-09-27 23:41:42 +02:00
cli fix(cli): use global_state file_fetcher when using SpecifierHandler (#7748) 2020-09-30 17:22:58 +10:00
core v1.4.2 2020-09-25 16:53:48 +02:00
docs docs: end sentences with a period in docs (#7730) 2020-09-28 16:01:32 +10:00
op_crates fix(cli/dts): Use var instead of const and let for globals (#7680) 2020-09-26 07:23:35 +10:00
std feat(cli/console): Add Deno.InspectOptions::colors (#7742) 2020-09-30 12:59:50 +10:00
test_plugin chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
test_util chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
third_party@e80050929a
tools mark shell code blocks as sh instead of bash (#7645) 2020-09-23 14:07:43 -04:00
.dprintrc.json feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
.editorconfig
.eslintignore Move benchmarks to Rust (#7134) 2020-08-28 09:03:50 -04:00
.eslintrc.json
.gitattributes
.gitignore chore(std/hash): update crates (#7631) 2020-09-22 23:03:11 +02:00
.gitmodules
.rustfmt.toml
Cargo.lock feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
Cargo.toml chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
CODE_OF_CONDUCT.md
LICENSE
README.md improve readme (#7530) 2020-09-29 11:40:17 -04:00
Releases.md v1.4.2 2020-09-25 16:53:48 +02: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@0.69.0/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 the our guidelines