A web framework with one goal: simplicity!
Go to file
2024-09-07 08:11:23 -05:00
send Update file naming 2024-09-05 22:02:43 -05:00
tests Add HTTP method funcs to server 2024-09-07 08:11:23 -05:00
.gitignore Initial commit 2024-08-23 22:23:16 -05:00
context.go Update file naming 2024-09-05 22:02:43 -05:00
go.mod Upload Eduard's code, with updated comments 2024-08-23 22:36:32 -05:00
go.sum Upload Eduard's code, with updated comments 2024-08-23 22:36:32 -05:00
handler.go Update file naming 2024-09-05 22:02:43 -05:00
header.go Update file naming 2024-09-05 22:02:43 -05:00
http.go Update file naming 2024-09-05 22:02:43 -05:00
LICENSE Initial commit 2024-08-23 22:23:16 -05:00
README.md Update README 2024-09-05 22:02:43 -05:00
request.go Update file naming 2024-09-05 22:02:43 -05:00
response.go Update file naming 2024-09-05 22:02:43 -05:00
server.go Add HTTP method funcs to server 2024-09-07 08:11:23 -05: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.asharkk.net/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.Request().Param("post"))
})

// Wildcard route
s.Get("/images/*file", func(ctx web.Context) error {
	return ctx.String(ctx.Request().Param("file"))
})

// Middleware
s.Use(func(ctx web.Context) error {
	start := time.Now()

	defer func() {
		fmt.Println(ctx.Request().Path(), time.Since(start))
	}()

	return ctx.Next()
})

s.Run(":8080")