• Stars
    star
    601
  • Rank 74,537 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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