deno.land / x / abc@v1.3.3

Abc

A better Deno framework to create web application

tag Build Status license tag tag

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 });
abc

Version Info

Tagged at
2 years ago