"Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
"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.53.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" });
}
Website | Manual and Standard Library Docs | Github
Cannot help but notice that "deno" is an anagram of "node".
Last modified 16 December 2024