{"id":15168684,"url":"https://github.com/denosaurs/rutt","last_synced_at":"2025-10-29T22:06:50.729Z","repository":{"id":57805794,"uuid":"528016847","full_name":"denosaurs/rutt","owner":"denosaurs","description":"🛣️ A tiny and fast http request router designed for use with deno and deno deploy","archived":false,"fork":false,"pushed_at":"2024-09-18T19:16:51.000Z","size":16,"stargazers_count":62,"open_issues_count":3,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T00:32:48.132Z","etag":null,"topics":["deno","deno-deploy","deploy","hacktoberfest","router","routing","server","serverless","urlpattern"],"latest_commit_sha":null,"homepage":"https://deno.land/x/rutt","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/denosaurs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"open_collective":"denosaurs","github":"denosaurs"}},"created_at":"2022-08-23T14:01:26.000Z","updated_at":"2025-01-31T21:34:30.000Z","dependencies_parsed_at":"2023-02-13T04:16:04.649Z","dependency_job_id":"d2f1919a-de59-4857-b1e0-faeecbe682b3","html_url":"https://github.com/denosaurs/rutt","commit_stats":{"total_commits":16,"total_committers":5,"mean_commits":3.2,"dds":0.4375,"last_synced_commit":"e42dcf106cfb70a5844a7752dcafd214590a3057"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Frutt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Frutt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Frutt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Frutt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/denosaurs","download_url":"https://codeload.github.com/denosaurs/rutt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248675434,"owners_count":21143763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","deno-deploy","deploy","hacktoberfest","router","routing","server","serverless","urlpattern"],"created_at":"2024-09-27T06:40:24.982Z","updated_at":"2025-10-29T22:06:50.649Z","avatar_url":"https://github.com/denosaurs.png","language":"TypeScript","funding_links":["https://opencollective.com/denosaurs","https://github.com/sponsors/denosaurs"],"categories":[],"sub_categories":[],"readme":"# Rutt\n\nRutt is a tiny http router designed for use with deno and deno deploy. It is\nwritten in about 200 lines of code and is pretty fast, using an extended type of\nthe web-standard\n[`URLPattern`s](https://developer.mozilla.org/en-US/docs/Web/API/URLPattern) to\nprovide fast and easy route matching.\n\n```ts\nimport { router } from \"jsr:@denosaurs/rutt\";\n\nawait Deno.serve(\n  router({\n    \"/\": (_req) =\u003e new Response(\"Hello world!\", { status: 200 }),\n  }),\n).finished;\n```\n\n## Usage with `deno serve`\n\n```ts\nimport { router } from \"jsr:@denosaurs/rutt\";\n\nexport default {\n  fetch: router({\n    \"/hello/:name\": (_req, _, { name }) =\u003e\n      new Response(`Hello ${name}`, { status: 200 }),\n  }),\n};\n```\n\n## Projects using `rutt`\n\n- [denoland/fresh](https://github.com/denoland/fresh)\n\n## Maintainers\n\n- Elias Sjögreen ([@eliassjogreen](https://github.com/eliassjogreen))\n- Dean Srebnik ([@load1n9](https://github.com/load1n9))\n- Leo Kettmeir ([@crowlKats](https://github.com/crowlKats))\n\n### Contribution\n\nPull request, issues and feedback are very welcome. Code style is formatted with\n`deno fmt` and commit messages are done following Conventional Commits spec.\n\n### Licence\n\nCopyright 2022-2024, the denosaurs team. All rights reserved. MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Frutt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenosaurs%2Frutt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Frutt/lists"}