mux
DISCONTINUED
Echo
Our great sponsors
mux | Echo | |
---|---|---|
79 | 106 | |
17,948 | 25,303 | |
- | 2.1% | |
2.6 | 8.6 | |
4 months ago | 3 days ago | |
Go | Go | |
BSD 3-clause "New" or "Revised" License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
mux
-
go-mir - a toolkit to develop RESTful API backend service like develop service of gRPC
Mir is a toolkit to develop RESTful API backend service like develop service of gRPC. It adapt some HTTP framework sush as Gin, Chi, Hertz, Echo, Iris, Fiber, Macaron, Mux, httprouter。
-
mux VS Don - a user suggested alternative
2 projects | 15 Mar 2023
-
Using Redis Caching and the Redis CLI to Improve API Performance
We will be using Gorilla Mux to create the APIs locally. Gorilla Mux implements a request router and dispatcher to match the incoming requests.
-
gorilla fork
https://github.com/gorilla/mux/issues/659 Don't get me wrong, I appreciate the good intentions but why didn't you become a maintainer of the original project?
-
Implemented a bench marker to compare Go's HTTP Router
gorilla/mux
-
State of Rust for web backends
popular libraries looking for new maintainers and getting eventually archived ( https://github.com/gorilla/mux )
-
Gorilla Web Toolkit is now in archive only mode
From the devs:
Initially found out about this via this issue thread here where they were looking for new maintainers.
-
Does Go have an equivalent to Python's Flask and Django?
The maintainer of Gorilla is in the process of dropping the project (he just doesn’t have enough time for it anymore) and is looking for new maintainers. A number of volunteers have replied to the issue but it seems like nobody has been chosen yet even though the call for new maintainers has been up for over a year.
-
Gorilla toolkit maintainers are stepping down and have been looking for new maintainers. The project could otherwise be archived.
According to maintainer requirements provided here, it's pretty obvious that it's quite hard to find new maintainers.
Echo
-
go-mir - a toolkit to develop RESTful API backend service like develop service of gRPC
Mir is a toolkit to develop RESTful API backend service like develop service of gRPC. It adapt some HTTP framework sush as Gin, Chi, Hertz, Echo, Iris, Fiber, Macaron, Mux, httprouter。
-
I've just started learning Golang, and I'm struggling to choose a framework.
I use Echo at my job, we have migrated from GoKit and is pretty good. https://echo.labstack.com
-
Tools besides Go for a newbie
IDE: use whatever make you productive. I personally use vscode. VCS: git, as golang communities use github heavily as base for many libraries. AFAIK Linter: use staticcheck for linting as it looks like mostly used linting tool in go, supported by many also. In Vscode it will be recommended once you install go plugin. Libraries/Framework: actually the standard libraries already included many things you need, decent enough for your day-to-day development cycles(e.g. `net/http`). But here are things for extra: - Struct fields validator: validator - Http server lib: chi router , httprouter , fasthttp (for non standard http implementations, but fast) - Web Framework: echo , gin , fiber , beego , etc - Http client lib: most already covered by stdlib(net/http), so you rarely need extra lib for this, but if you really need some are: resty - CLI: cobra - Config: godotenv , viper - DB Drivers: sqlx , postgre , sqlite , mysql - nosql: redis , mongodb , elasticsearch - ORM: gorm , entgo , sqlc(codegen) - JS Transpiler: gopherjs - GUI: fyne - grpc: grpc - logging: zerolog - test: testify , gomock , dockertest - and many others you can find here
-
Echo VS Don - a user suggested alternative
2 projects | 15 Mar 2023
-
Looking to start learning Golang as a backend developer, where should I begin?
The little go book, Maybe that can help you a little bit, and then you could try echo High performance, extensible, minimalist Go web framework. 👌🏻 It has good documentation.
-
How to save money with hexagonal architecture and SST
The project uses echo for serve as an http server, and we saved the config at the api/server.go file:
-
where to start
You should learn Echo and net http simultaneously, and I'll explain why. Go has a very high quality standard library which comes with a production quality web server and templating, and it has lightweight threads and concurrency primitives built into the language. So basically every library and framework builds on top of what is already there and as rule stuff integrates very well. I recommend Echo specifically because while there are lots of good frameworks, I think Echo is particularly good when it comes to documentation and code examples, i.e. beginner-friendly.
-
Ramping up a team on go
for me, Echo gives me that sense https://echo.labstack.com/
-
What are the most innovative and interesting frontend/backend frameworks you know? I'll use them to build my next side project.
I'm thinking of recreating something like silverbullet using Vite, Svelte, Echo, Sqlite, anime, and web sockets. I'll host it in Docker on my mini server, access it via Tailscale and back it up with restic to Azure. I have some vague idea of building a web app that is both the editor and the app at the same time. Like a game where you build the game by playing the game, but with markdown and magic. Perfect side project fodder.
-
my office want to migrate to go programming language, what framework is recommended between chi or fiber?
i prefer echo https://echo.labstack.com/ but from these two, i'd choose fiber
What are some alternatives?
Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
Fiber - ⚡️ Express inspired web framework written in Go
chi - lightweight, idiomatic and composable router for building Go HTTP services
Iris - The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :leaves: :rocket: | 谢谢 | #Go
Beego - beego is an open-source, high-performance web framework for the Go programming language.
go-kit - A standard library for microservices.
httprouter - A high performance HTTP request router that scales well
Revel - A high productivity, full-stack web framework for the Go language.