Description
valente is an experiment with Golang webapp using WebSockets. There are similar solutions in another languages/platform:
valente alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view valente alternatives based on common mentions on social networks and blogs.
-
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. -
Iris
The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :rocket: -
Gorilla WebSocket
DISCONTINUED. A fast, well-tested and widely used WebSocket implementation for Go. -
GoFrame
GoFrame is a modular, powerful, high-performance and enterprise-class application development framework of Golang. -
goa
๐ Goa: Elevate Go API development! ๐ Streamlined design, automatic code generation, and seamless HTTP/gRPC support. โจ -
GoFr
An opinionated GoLang framework for accelerated microservice development. Built in support for databases and observability. -
Faygo
Faygo is a fast and concise Go Web framework that can be used to develop high-performance web app(especially API) with fewer codes. Just define a struct handler, faygo will automatically bind/verify the request parameters and generate the online API doc. -
Huma
A modern, simple, fast & flexible micro framework for building HTTP REST/RPC APIs in Go backed by OpenAPI 3 and JSON Schema. -
go-server-timing
DISCONTINUED. Go (golang) library for creating and consuming HTTP Server-Timing headers
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of valente or a related project?
Popular Comparisons
README
valente - websocket for golang webapp
valente is an experiment with Golang webapp using WebSockets. There are similar solutions in another languages/platform:
- The Wt WebFramework has an experimental features with all comunications between server and browser using websockets.
- N2O and Nitrogen are frameworks with that feature coded in Erlang.
The use of asynchronism is mandatory for this solutions. Traditional threads aren't viable, due to high memory consumed for each connection. The Wt Framework is using Boost::asio to handle connections. In Go and Erlang, the languages features should make that scheme simple and scalable. I don't know :)
The valente is based on Nitrogen ideas.
Installing
To start using valente, install Go and run go get:
$ go get github.com/trumae/valente/...
This will retrieve the library and install the valente command line utility into your $GOBIN path.
How to use
$ valente new appsample
$ cd appsample
$ go get
$ go build
$ ./appsample
Access http://localhost:8000/ with your browser for boilerplate demo.
Run Sample
$ cd samples/finance
$ go get
$ go build
$ finance
Access http://localhost:8000/ with your browser and enjoy.
*Note that all licence references and agreements mentioned in the valente README section above
are relevant to that project's source code only.