🚀 Web server. 48 Commits
2024-03-28 11:27:06 +01:00
content Removed net/http 2024-03-26 22:46:16 +01:00
examples/hello Removed net/http 2024-03-26 22:46:16 +01:00
testdata Improved API 2024-03-16 15:22:47 +01:00
.gitignore Added test data 2024-03-12 20:36:57 +01:00
Context_test.go Added more tests 2024-03-27 20:41:27 +01:00
Context.go Removed net/http 2024-03-26 22:46:16 +01:00
go.mod Renamed module 2024-03-22 15:08:24 +01:00
go.sum Updated dependencies 2024-03-15 10:06:17 +01:00
Handler.go Renamed module 2024-03-22 15:08:24 +01:00
http.go Added request methods 2024-03-28 10:53:53 +01:00
README.md Added request headers 2024-03-27 22:12:16 +01:00
Request_test.go Added more tests 2024-03-27 20:41:27 +01:00
Request.go Improved performance 2024-03-28 00:30:49 +01:00
Response_test.go Improved compression test 2024-03-28 11:27:06 +01:00
Response.go Added request headers 2024-03-27 22:12:16 +01:00
Server.go Added request methods 2024-03-28 10:53:53 +01:00

web

Web server.

Features

  • High performance
  • Low latency
  • Radix tree routing

Installation

go get git.akyoto.dev/go/web

Usage

s := web.NewServer()

// Static route
s.Get("/", func(ctx web.Context) error {
	return ctx.String("Hello")
})

// Parameter route
s.Get("/blog/:post", func(ctx web.Context) error {
	return ctx.String(ctx.Get("post"))
})

// Wildcard route
s.Get("/images/*file", func(ctx web.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          32963155                30.88 ns/op            0 B/op          0 allocs/op
BenchmarkStatic/hello-12        31640433                37.92 ns/op            0 B/op          0 allocs/op
BenchmarkStatic/hello/world-12  22497412                52.57 ns/op            0 B/op          0 allocs/op
BenchmarkGitHub/gists/:id-12    24162244                49.70 ns/op            0 B/op          0 allocs/op
BenchmarkGitHub/repos/:a/:b-12  18865028                59.22 ns/op            0 B/op          0 allocs/op

License

Please see the license documentation.

© 2024 Eduard Urbach