🚀 Web server. 16 Commits
2024-03-07 18:17:01 +01:00
.gitignore Updated documentation 2024-03-07 18:09:51 +01:00
Context.go Removed SetStatus 2023-07-22 14:14:50 +02:00
go.mod Updated documentation 2024-03-07 18:09:51 +01:00
go.sum Updated documentation 2024-03-07 18:09:51 +01:00
pool.go Renamed module 2023-07-18 21:48:38 +02:00
README.md Updated documentation 2024-03-07 18:17:01 +01:00
Request.go Added request and response 2023-07-22 12:32:52 +02:00
Response.go Added request and response 2023-07-22 12:32:52 +02:00
Server_test.go Added request and response 2023-07-22 12:32:52 +02:00
Server.go Added more HTTP methods 2023-07-22 11:36:28 +02: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"))
})

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