Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A minimal and idiomatic WebSocket library for Go

License

NotificationsYou must be signed in to change notification settings

versus/websocket

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoDocCodecov

websocket is a minimal and idiomatic WebSocket library for Go.

Install

go get nhooyr.io/websocket@v1.4.0

Features

  • Minimal and idiomatic API
  • Tiny codebase at 1700 lines
  • First class context.Context support
  • Thorough tests, fully passes theautobahn-testsuite
  • Zero dependencies outside of the stdlib for the core library
  • JSON and ProtoBuf helpers in the wsjson and wspb subpackages
  • Highly optimized by default
  • Concurrent writes out of the box

Roadmap

  • WebSockets over HTTP/2#4

Examples

For a production quality example that shows off the full API, see theecho example on the godoc. On github, the example is atexample_echo_test.go.

Server

http.HandlerFunc(func (w http.ResponseWriter,r*http.Request) {c,err:=websocket.Accept(w,r, websocket.AcceptOptions{})iferr!=nil {// ...}deferc.Close(websocket.StatusInternalError,"the sky is falling")ctx,cancel:=context.WithTimeout(r.Context(),time.Second*10)defercancel()varvinterface{}err=wsjson.Read(ctx,c,&v)iferr!=nil {// ...}log.Printf("received: %v",v)c.Close(websocket.StatusNormalClosure,"")})

Client

The client side of this library requires at minimum Go 1.12 as it uses anew featurein net/http to perform WebSocket handshakes.

ctx,cancel:=context.WithTimeout(context.Background(),time.Minute)defercancel()c,_,err:=websocket.Dial(ctx,"ws://localhost:8080", websocket.DialOptions{})iferr!=nil {// ...}deferc.Close(websocket.StatusInternalError,"the sky is falling")err=wsjson.Write(ctx,c,"hi")iferr!=nil {// ...}c.Close(websocket.StatusNormalClosure,"")

Design justifications

  • A minimal API is easier to maintain due to less docs, tests and bugs
  • A minimal API is also easier to use and learn
  • Context based cancellation is more ergonomic and robust than setting deadlines
  • net.Conn is never exposed as WebSocket over HTTP/2 will not have a net.Conn.
  • Using net/http's Client for dialing means we do not have to reinvent dialing hooksand configurations like other WebSocket libraries
  • We do not support the deflate compression extension because Go's compress/flate libraryis very memory intensive and browsers do not handle WebSocket compression intelligently.See#5

Comparison

Before the comparison, I want to point out that both gorilla/websocket and gobwas/ws wereextremely useful in implementing the WebSocket protocol correctly sobig thanks to theauthors of both. In particular, I made sure to go through the issue tracker of gorilla/websocketto ensure I implemented details correctly and understood how people were using WebSockets inproduction.

gorilla/websocket

https://github.com/gorilla/websocket

This package is the community standard but it is 6 years old and over timehas accumulated cruft. There are too many ways to do the same thing.Just compare the godoc ofnhooyr/websocket side by side withgorilla/websocket.

The API for nhooyr/websocket has been designed such that there is only one way to do thingswhich makes it easy to use correctly. Not only is the API simpler, the implementation isonly 1700 lines whereas gorilla/websocket is at 3500 lines. That's more code to maintain,more code to test, more code to document and more surface area for bugs.

Moreover, nhooyr/websocket has support for newer Go idioms such as context.Context andalso uses net/http's Client and ResponseWriter directly for WebSocket handshakes.gorilla/websocket writes its handshakes to the underlying net.Conn which meansit has to reinvent hooks for TLS and proxies and prevents support of HTTP/2.

Some more advantages of nhooyr/websocket are that it supports concurrent writes andmakes it very easy to close the connection with a status code and reason.

The ping API is also nicer. gorilla/websocket requires registering a pong handler on the Connwhich results in awkward control flow. With nhooyr/websocket you use the Ping method on the Connthat sends a ping and also waits for the pong, though you must be reading from the connectionfor the pong to be read.

In terms of performance, the differences mostly depend on your application code. nhooyr/websocketreuses message buffers out of the box if you use the wsjson and wspb subpackages.As mentioned above, nhooyr/websocket also supports concurrent writers.

The only performance con to nhooyr/websocket is that uses one extra goroutine to supportcancellation with context.Context. This costs 2 KB of memory which is cheap compared tosimplicity benefits.

x/net/websocket

https://godoc.org/golang.org/x/net/websocket

Unmaintained and the API does not reflect WebSocket semantics. Should never be used.

Seegolang/go#18152

gobwas/ws

https://github.com/gobwas/ws

This library has an extremely flexible API but that comes at the cost of usabilityand clarity.

This library is fantastic in terms of performance. The author put in significanteffort to ensure its speed and I have applied as many of its optimizations asI could into nhooyr/websocket. Definitely check out his fantasticblog postabout performant WebSocket servers.

If you want a library that gives you absolute control over everything, this is the library,but for most users, the API provided by nhooyr/websocket will fit better as it is nearly justas performant but much easier to use correctly and idiomatic.

Users

This is a list of companies or projects that use this library.

If your company or project is using this library, please feel free to open a PR to amend the list.

About

A minimal and idiomatic WebSocket library for Go

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go97.2%
  • Shell2.8%

[8]ページ先頭

©2009-2025 Movatter.jp