zhmushan / abc

A better Deno framework to create web application.

Home Page:https://doc.deno.land/https/deno.land/x/abc/mod.ts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A better Deno framework to create web application.

https://doc.deno.land/https/deno.land/x/abc/mod.ts

License:MIT License


Languages

Language:TypeScript 100.0%