Skip to main content
Module

x/abc/mod.ts>abc

A better Deno framework to create web application.
Go to Latest
function abc
import { abc } from "https://deno.land/x/abc@v0.1.10/mod.ts";

abc creates an instance of Abc.

Example:

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