An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# matchem

An HTTP router in Gleam.

[![Package Version](https://img.shields.io/hexpm/v/matchem)](https://hex.pm/packages/matchem)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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
```