Skip to content

danteissaias/fast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast

Minimalist web framework for Deno

test deno doc deno module

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

const app = application();

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

await serve(app.handle);