763 B

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"))
})

http.ListenAndServe(":8080", s)

Tests

PASS: TestRouter
PASS: TestPanic
coverage: 100.0% of statements

Benchmarks

coming soon

License

Please see the license documentation.

© 2023 Eduard Urbach