Abc A better Deno framework to create web application Quick links Guides Examples Hello World import { Application } from "https://deno.land/x/abc/mod.ts"; const app = new Application(); app .get("/hello", c => { return "Hello, Abc!"; }) .start({ port: 8080 });