Framework-agnostic HTTP router.
sh pnpm i @tinyhttp/router
```js import { Router } from '@tinyhttp/router'
const router = new Router()
router.get('/', (req, res) => res.send('Hello World'))
console.log(router.middleware) ```