Deno v1.9.1_typescript

Deno v1.9.1

Deno v1.9.1

A secure runtime for JavaScript and TypeScript.

Deno v1.9.1_Node.js_02

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

$ brew install deno

​https://deno.land/​

Standard Library

​https://deno.land/std@0.94.0​

demo

$ deno run https://deno.land/std/examples/welcome.ts

Or a more complex one:

import { serve } from "https://deno.land/std@0.94.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" });
}

refs