69 lines
788 B
Markdown
Raw Normal View History

2023-07-18 19:48:38 +00:00
# server
2023-07-18 11:37:05 +00:00
2023-07-18 19:48:38 +00:00
HTTP server.
2024-03-07 17:09:51 +00:00
## Features
- Specificity based routing
2023-07-18 19:48:38 +00:00
## Installation
```shell
go get git.akyoto.dev/go/server
```
2024-03-07 17:09:51 +00:00
## Usage
2023-07-18 19:48:38 +00:00
```go
s := server.New()
2023-07-22 09:54:13 +00:00
// Add your routes here.
http.ListenAndServe(":8080", s)
```
2024-03-07 17:09:51 +00:00
### Static
2023-07-22 09:54:13 +00:00
```go
2023-07-18 19:48:38 +00:00
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
2023-07-22 09:54:13 +00:00
```
2023-07-18 19:48:38 +00:00
2024-03-07 17:09:51 +00:00
### Parameter
2023-07-22 09:54:13 +00:00
```go
s.Get("/blog/:post", func(ctx server.Context) error {
return ctx.String(ctx.Get("post"))
})
```
2024-03-07 17:09:51 +00:00
### Wildcard
2023-07-22 09:54:13 +00:00
```go
s.Get("/images/*file", func(ctx server.Context) error {
return ctx.String(ctx.Get("file"))
})
2024-03-07 17:09:51 +00:00
```
## Tests
```
PASS: TestRouter
PASS: TestPanic
coverage: 100.0% of statements
```
## Benchmarks
```
```
## License
Please see the [license documentation](https://akyoto.dev/license).
## Copyright
© 2023 Eduard Urbach