Goweb 基于net / http的轻量级Web框架。 包括 路由 中间件 测井 简易CORS(实验性) Goweb旨在 尽可能只依赖标准库 变通 表现良好 用法 参见。 基本用法 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.