abc icon indicating copy to clipboard operation
abc copied to clipboard

A better Deno framework to create web application.

Abc

A better Deno framework to create web application

tag Build Status license tag tag

Quick links

Hello World

import { Application } from "https://deno.land/x/[email protected]/mod.ts";

const app = new Application();

console.log("http://localhost:8080/");

app
  .get("/hello", (c) => {
    return "Hello, Abc!";
  })
  .start({ port: 8080 });