Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

clementd64/denosaur

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Denosaur

Yet another web framework

Work In Progress

import { Denosaur } from "https://deno.land/x/denosaur/mod.ts";

new Denosaur()
  .get("/", (r) => r.s.text("Hello World!"))
  .get("/ping", (r) => r.s.text("pong"))
  .get("/hello/:name", (r) => r.s.text(`Hello ${r.params.name}!`))
  .listen(8080);

About

Yet another web framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published