Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

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/abc@v1.3.3/mod.ts";

const app = new Application();

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

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