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