# yee **Repository Path**: jjfinal/yee ## Basic Information - **Project Name**: yee - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-01 - **Last Updated**: 2025-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Yee   🦄 Web frameworks for Go, easier & faster. This is a framework for learning purposes. Refer to the code for Echo and Gin - Faster HTTP router - Build RESTful APIs - Group APIs - Extensible middleware framework - Define middleware at root, group or route level - Data binding for URI Query, JSON, XML, Protocol Buffer3 and form payload - HTTP/2(H2C)/Http3(QUIC) support # Supported Go versions Yee is available as a Go module. You need to use Go 1.13 + ## Example #### Quick start ```go file, err := os.OpenFile("logrus.log", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666) if err != nil { return } y := yee.New() y.SetLogLevel(logger.Warning) y.SetLogOut(file) y.Use(Logger()) y.Static("/assets", "dist/assets") y.GET("/", func(c yee.Context) (err error) { return c.HTMLTml(http.StatusOK, "dist/index.html") }) y.GET("/hello", func(c yee.Context) error { return c.String(http.StatusOK, "