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