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