Deno by Example

A hands-on orientation to Deno inspired by Go by Example.

Deno is a simple, modern and secure runtime for JavaScript and TypeScript.

  • Secure by default. No file, network, or environment access, unless explicitly enabled.

  • Supports TypeScript out of the box.

  • Ships only a single executable file.

  • Has built-in utilities like a dependency inspector (deno info) and a code formatter (deno fmt).

  • Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno: deno.land/std

Deno by Example focuses on TypeScript.

Deno innovates in a number of ways, and one of these is by providing first class “batteries-included” support for TypeScript.

It’s better to catch mistakes early compiling code instead of later after the program is already running and harder to diagnose. As you ramp up, you’ll benefit from early exposure to strong typing, so all of the examples here are written with this in mind.