> Deno Runtime

Server-side TypeScript with Deno. Built-in TypeScript, permissions, std library, and fresh framework.

fetch
$curl "https://skillshub.wtf/skillshub-team/catalog-batch5/deno-runtime?format=md"
SKILL.mdDeno Runtime

Deno

Run

deno run --allow-net --allow-read server.ts
deno run --watch server.ts  # dev mode

HTTP Server

Deno.serve({ port: 8000 }, (req) => {
    const url = new URL(req.url);
    if (url.pathname === "/api/hello") return Response.json({ msg: "hello" });
    return new Response("Not Found", { status: 404 });
});

Permissions: --allow-net, --allow-read, --allow-write, --allow-env

Imports: import from "https://deno.land/std@0.220.0/..."

deno.json for import maps, tasks, lint/fmt config

Fresh framework for full-stack Deno web apps

┌ stats

installs/wk0
░░░░░░░░░░
first seenMar 18, 2026
└────────────

┌ tags

└────────────