1.3 KiB

server

HTTP server.

Features

  • 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          33616044                33.82 ns/op            0 B/op          0 allocs/op
BenchmarkStatic/hello-12        26220148                43.75 ns/op            0 B/op          0 allocs/op
BenchmarkStatic/hello/world-12  19777713                58.89 ns/op            0 B/op          0 allocs/op
BenchmarkGitHub/gists/:id-12    20842587                56.36 ns/op            0 B/op          0 allocs/op
BenchmarkGitHub/repos/:a/:b-12  17875575                65.04 ns/op            0 B/op          0 allocs/op

License

Please see the license documentation.

© 2023 Eduard Urbach