Deno

A browser-like command line runtime
Linux & Mac Windows
deno
deno_std
deno_install
registry

Install #

Using Shell:

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

Or using PowerShell:

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

See deno_install for more installation options.

Example #

Try running a simple program:

deno https://deno.land/welcome.ts

Or a more complex one:

import { serve } from "https://deno.land/std@v0.2.10/http/server.ts";
const s = serve("0.0.0.0:8000");

async function main() {
  for await (const req of s) {
    req.respond({ body: new TextEncoder().encode("Hello World\n") });
  }
}

main();

Dig in... #

Manual

API Reference

Style Guide

Module repository

Release notes

Community chat room

Benchmarks

A curated list of awesome Deno things