Skip to content
forked from coder/websocket

Minimal and idiomatic WebSocket library for Go

License

Notifications You must be signed in to change notification settings

tomqwpl/websocket

This branch is 210 commits behind coder/websocket:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

14fb98e · Dec 13, 2022
May 10, 2020
Apr 7, 2021
Nov 26, 2020
Apr 14, 2020
May 5, 2020
Feb 16, 2020
Feb 13, 2020
May 30, 2019
Dec 13, 2022
Dec 23, 2020
Apr 14, 2020
Dec 23, 2020
Feb 16, 2020
Feb 16, 2020
Apr 14, 2020
Feb 13, 2020
Apr 14, 2020
Feb 16, 2020
Feb 13, 2020
Feb 12, 2020
Apr 7, 2021
May 10, 2020
Dec 23, 2020
Sep 22, 2020
Feb 16, 2020
Apr 14, 2020
Feb 16, 2020
Feb 16, 2020
Feb 16, 2020
May 10, 2020
May 10, 2020
Feb 16, 2020
Apr 10, 2021
Nov 29, 2019
May 10, 2020
Apr 14, 2020
Feb 13, 2020

Repository files navigation

websocket

godoc coverage

websocket is a minimal and idiomatic WebSocket library for Go.

note: I haven't been responsive for questions/reports on the issue tracker but I do read through and there are no outstanding bugs. There are certainly some nice to haves that I should merge in/figure out but nothing critical. I haven't given up on adding new features and cleaning up the code further, just been busy. Should anything critical arise, I will fix it.

Install

go get nhooyr.io/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 nhooyr.io/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 nhooyr.io/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, nhooyr.io/websocket will be faster and easier to use.

About

Minimal and idiomatic WebSocket library for Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 98.4%
  • Shell 1.3%
  • Dockerfile 0.3%