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

https://github.com/ryuapp/rod

A routing library for Request
https://github.com/ryuapp/rod

Last synced: 12 months ago
JSON representation

A routing library for Request

Awesome Lists containing this project

README

          

# Rod

Rod is a routing library for [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request).

```ts
import { Rod } from "@rod/rod";

const router = new Rod();
router.get("/", () => new Response("Hello World"));

export default router;
```