An open API service indexing awesome lists of open source software.

https://github.com/tortitast/trouter

Deno router
https://github.com/tortitast/trouter

deno

Last synced: 2 months ago
JSON representation

Deno router

Awesome Lists containing this project

README

          

# trouter
Another Deno router.
## Usage

```ts
import { Router } from "https://deno.land/x/trouter@0.1.2/mod.ts";

const router: Router = new Router();

router.get("hello", () => {
return "Hello World";
});

router.listen(80);
```