Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vulcand/route
HTTP request routing library and language
https://github.com/vulcand/route
Last synced: 5 days ago
JSON representation
HTTP request routing library and language
- Host: GitHub
- URL: https://github.com/vulcand/route
- Owner: vulcand
- License: apache-2.0
- Created: 2014-11-25T22:02:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-12T00:19:17.000Z (about 1 month ago)
- Last Synced: 2025-01-08T20:07:33.232Z (12 days ago)
- Language: Go
- Size: 90.8 KB
- Stars: 60
- Watchers: 24
- Forks: 11
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Route
=====```go
Host("localhost") && Method(http.MethodPost) && Path("/v1")
Host("localhost") && Method(http.MethodPost) && Path("/v1") && Header("Content-Type", "application/")
```HTTP request routing language and library.
Features:
* Trie based matching
* Regexp based matching
* Matches hosts, headers, methods and paths
* Flexible matching languageDocumentation:
http://godoc.org/github.com/vulcand/route