https://github.com/willothy/matchem
Radix trie HTTP routing in Gleam. The main goal of this project is to learn Gleam, not to build a good HTTP router.
https://github.com/willothy/matchem
Last synced: 4 months ago
JSON representation
Radix trie HTTP routing in Gleam. The main goal of this project is to learn Gleam, not to build a good HTTP router.
- Host: GitHub
- URL: https://github.com/willothy/matchem
- Owner: willothy
- Created: 2025-03-28T19:55:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-28T23:26:05.000Z (over 1 year ago)
- Last Synced: 2025-03-29T00:23:09.116Z (over 1 year ago)
- Language: Gleam
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# matchem
An HTTP router in Gleam.
[](https://hex.pm/packages/matchem)
[](https://hexdocs.pm/matchem/)
```sh
gleam add matchem@1
```
```gleam
import matchem
pub fn main() {
// TODO: An example of the project in use
}
```
Further documentation can be found at .
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```