Popularity
2.0
Declining
Activity
0.0
Stable
16
6
3

Description

valente is an experiment with Golang webapp using WebSockets. There are similar solutions in another languages/platform:

Programming language: Go
License: MIT License
Tags: Web Frameworks     Websocket     Webapp    
Latest version: v0.1.6

valente alternatives and similar packages

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

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

Add another 'Web Frameworks' Package

README

valente - websocket for golang webapp

license Godoc Go Report Card wercker status codecov

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.

Alt text


*Note that all licence references and agreements mentioned in the valente README section above are relevant to that project's source code only.