🚀 Web server. 24 Commits
2024-03-14 00:06:20 +01:00
examples Added middleware support 2024-03-13 20:18:01 +01:00
testdata Added test data 2024-03-12 20:36:57 +01:00
.gitignore Added test data 2024-03-12 20:36:57 +01:00
Benchmarks_test.go Added middleware support 2024-03-13 20:18:01 +01:00
Configuration.go Added graceful shutdown 2024-03-12 22:31:45 +01:00
Context.go Improved performance 2024-03-14 00:06:20 +01:00
go.mod Added Status method 2024-03-13 16:57:36 +01:00
go.sum Added Status method 2024-03-13 16:57:36 +01:00
Handler.go Added router benchmarks 2024-03-12 20:35:19 +01:00
NullResponse_test.go Added router benchmarks 2024-03-12 20:35:19 +01:00
pool.go Added graceful shutdown 2024-03-12 22:31:45 +01:00
README.md Improved performance 2024-03-14 00:06:20 +01:00
Server_test.go Implemented the io.Writer interface 2024-03-13 22:49:57 +01:00
Server.go Improved performance 2024-03-14 00:06:20 +01:00

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

BenchmarkHello-12       35983602                33.28 ns/op            0 B/op          0 allocs/op
BenchmarkGitHub-12      18320769                68.66 ns/op            0 B/op          0 allocs/op

License

Please see the license documentation.

© 2023 Eduard Urbach