Skip to content

(Fork) Minimal and idiomatic WebSocket library for Go

License

Notifications You must be signed in to change notification settings

seanpfeifer/websocket

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

websocket

godoc

websocket is a minimal and idiomatic WebSocket library for Go.

NOTE: This is a fork of nhooyr.io/websocket with a few small goals:

  • Remove unnecessary dependencies that exist for benchmarking and compatibility testing
    • These bloat users of the library
  • Upgrade dependencies, including to latest Protobuf
  • Minor bugfixes that haven't made their way into the upstream library

This fork does not attempt to maintain full compatibility with the upstream library.

Install

go get github.com/seanpfeifer/websocket

Highlights

Roadmap

  • HTTP/2 #4

Examples

For a production quality example that demonstrates the complete API, see the echo example.

For a full stack example, see the chat example.

Server

http.HandlerFunc(func (w http.ResponseWriter, r *http.Request) {
 c, err := websocket.Accept(w, r, nil)
 if err != nil {
  // ...
 }
 defer c.Close(websocket.StatusInternalError, "the sky is falling")

 ctx, cancel := context.WithTimeout(r.Context(), time.Second*10)
 defer cancel()

 var v interface{}
 err = wsjson.Read(ctx, c, &v)
 if err != nil {
  // ...
 }

 log.Printf("received: %v", v)

 c.Close(websocket.StatusNormalClosure, "")
})

Client

ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
defer cancel()

c, _, err := websocket.Dial(ctx, "ws://localhost:8080", nil)
if err != nil {
 // ...
}
defer c.Close(websocket.StatusInternalError, "the sky is falling")

err = wsjson.Write(ctx, c, "hi")
if err != nil {
 // ...
}

c.Close(websocket.StatusNormalClosure, "")

Comparison

gorilla/websocket

Advantages of gorilla/websocket:

Advantages of github.com/seanpfeifer/websocket:

golang.org/x/net/websocket

golang.org/x/net/websocket is deprecated. See golang/go/issues/18152.

The net.Conn can help in transitioning to github.com/seanpfeifer/websocket.

gobwas/ws

gobwas/ws has an extremely flexible API that allows it to be used in an event driven style for performance. See the author's blog post.

However when writing idiomatic Go, github.com/seanpfeifer/websocket will be faster and easier to use.

About

(Fork) Minimal and idiomatic WebSocket library for Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%