🚀 Web server.
28 Commits
examples | ||
testdata | ||
.gitignore | ||
Benchmarks_test.go | ||
common_test.go | ||
Configuration.go | ||
Context.go | ||
go.mod | ||
go.sum | ||
Handler.go | ||
README.md | ||
Server_test.go | ||
Server.go |
server
HTTP server.
Features
- High performance
- Low latency
- Radix tree routing
Installation
go get git.akyoto.dev/go/server
Usage
s := server.New()
// Static route
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
// Parameter route
s.Get("/blog/:post", func(ctx server.Context) error {
return ctx.String(ctx.Get("post"))
})
// Wildcard route
s.Get("/images/*file", func(ctx server.Context) error {
return ctx.String(ctx.Get("file"))
})
s.Run(":8080")
Tests
PASS: TestRouter
PASS: TestMiddleware
PASS: TestPanic
PASS: TestRun
PASS: TestUnavailablePort
coverage: 100.0% of statements
Benchmarks
BenchmarkStatic/#00-12 34907296 30.19 ns/op 0 B/op 0 allocs/op
BenchmarkStatic/hello-12 27628322 40.89 ns/op 0 B/op 0 allocs/op
BenchmarkStatic/hello/world-12 21330940 56.24 ns/op 0 B/op 0 allocs/op
BenchmarkGitHub/gists/:id-12 23608254 50.86 ns/op 0 B/op 0 allocs/op
BenchmarkGitHub/repos/:a/:b-12 18912602 59.02 ns/op 0 B/op 0 allocs/op
License
Please see the license documentation.
Copyright
© 2023 Eduard Urbach