🚀 Web server.
63 Commits
Eduard Urbach 818e0054c1
Added Redirect function
2024-04-02 16:17:43 +02:00
examples/hello Removed net/http 2024-03-26 22:46:16 +01:00
send Renamed content to send 2024-04-02 15:23:44 +02:00
.gitignore Added test data 2024-03-12 20:36:57 +01:00
Context_test.go Added Redirect function 2024-04-02 16:17:43 +02:00
Context.go Added Redirect function 2024-04-02 16:17:43 +02: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
Header.go Added server tests 2024-03-28 12:22:45 +01:00
http.go Added server tests 2024-03-28 12:22:45 +01:00
README.md Added Redirect function 2024-04-02 16:17:43 +02:00
Request_test.go Added server tests 2024-03-28 12:22:45 +01:00
Request.go Added server tests 2024-03-28 12:22:45 +01:00
Response_test.go Added server tests 2024-03-28 12:22:45 +01:00
Response.go Improved performance 2024-03-28 15:19:46 +01:00
Server_test.go Added more tests 2024-03-28 14:27:40 +01:00
Server.go Removed fmt package 2024-03-28 18:03:07 +01:00

web

A fast HTTP/1.1 web server that can sit behind a reverse proxy like caddy or nginx for HTTP 1/2/3 support.

Features

  • High performance
  • Low latency
  • Scales incredibly well with the number of routes

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: TestBytes
PASS: TestString
PASS: TestError
PASS: TestErrorMultiple
PASS: TestRedirect
PASS: TestRequest
PASS: TestRequestHeader
PASS: TestRequestParam
PASS: TestWrite
PASS: TestWriteString
PASS: TestResponseCompression
PASS: TestResponseHeader
PASS: TestResponseHeaderOverwrite
PASS: TestPanic
PASS: TestRun
PASS: TestBadRequest
PASS: TestBadRequestHeader
PASS: TestBadRequestMethod
PASS: TestBadRequestProtocol
PASS: TestEarlyClose
PASS: TestUnavailablePort
coverage: 100.0% of statements

Benchmarks

wrk Benchmark

License

Please see the license documentation.

© 2024 Eduard Urbach