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
- Host: GitHub
- URL: https://github.com/ryuapp/rod
- Owner: ryuapp
- License: mit
- Created: 2025-01-22T03:35:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-24T05:04:10.000Z (about 1 year ago)
- Last Synced: 2025-06-12T06:02:56.659Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
```