Skip to content

danteissaias/fast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast

Small (<200L) web framework.

test deno doc

import { serve } from "https://deno.land/std/http/server.ts";
import { Application } from "https://deno.land/x/fast/mod.ts";

const app = new Application();

app.get("/", () => "Hello, World!");

await serve(app.handle);