Popularity
2.7
Growing
Activity
3.6
Declining
37
4
6

Programming language: Go
License: MIT License
Tags: Web Frameworks    
Latest version: v0.13.0

goweb alternatives and similar packages

Based on the "Web Frameworks" category.
Alternatively, view goweb alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of goweb or a related project?

Add another 'Web Frameworks' Package

README

Goweb

Light weight web framework based on net/http.

Includes

  • routing
  • middleware
  • logging

Goweb aims to

  1. rely only on the standard library as much as possible
  2. be flexible
  3. perform well

Usage

See examples.

Basic usage

package main

import (
    "github.com/twharmon/goweb"
)

func main() {
    app := goweb.New()
    app.GET("/hello/{name}", hello)
    app.Run(":8080")
}

func hello(c *goweb.Context) goweb.Responder {
    return c.JSON(goweb.Map{
        "hello": c.Param("name"),
    })
}

Easily extendable

See serving files, template rendering, and tls for examples.

Documentation

For full documentation see pkg.go.dev.

Benchmarks

BenchmarkGinPlaintext                      780 ns/op        1040 B/op          9 allocs/op
BenchmarkEchoPlaintext                     817 ns/op        1024 B/op         10 allocs/op
BenchmarkGowebPlaintext                   1241 ns/op        1456 B/op         16 allocs/op
BenchmarkGorillaPlaintext                 1916 ns/op        2032 B/op         19 allocs/op
BenchmarkMartiniPlaintext                14448 ns/op        1779 B/op         36 allocs/op

BenchmarkGowebJSON                       60042 ns/op       50798 B/op         15 allocs/op
BenchmarkGorillaJSON                     61086 ns/op       51330 B/op         18 allocs/op
BenchmarkEchoJSON                        61115 ns/op       50280 B/op         10 allocs/op
BenchmarkGinJSON                         68322 ns/op      100116 B/op         10 allocs/op
BenchmarkMartiniJSON                     96365 ns/op      144335 B/op         38 allocs/op

BenchmarkGinPathParams                    2464 ns/op        1952 B/op         27 allocs/op
BenchmarkEchoPathParams                   2600 ns/op        1968 B/op         27 allocs/op
BenchmarkGowebPathParams                  3591 ns/op        2673 B/op         35 allocs/op
BenchmarkGorillaPathParams                4220 ns/op        3265 B/op         36 allocs/op
BenchmarkMartiniPathParams               15211 ns/op        2657 B/op         45 allocs/op

Contribute

Create a pull request to contribute to Goweb.