You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- JSON and protobuf helpers in the [wsjson](https://godoc.org/nhooyr.io/websocket/wsjson) and [wspb](https://godoc.org/nhooyr.io/websocket/wspb) subpackages
23
23
- Zero alloc reads and writes
24
24
- Concurrent writes
@@ -34,7 +34,7 @@ go get nhooyr.io/websocket
34
34
35
35
## Examples
36
36
37
-
For a production quality example that demonstrates the full API, see the [echo example](https://godoc.org/nhooyr.io/websocket#example-package--Echo).
37
+
For a production quality example that demonstrates the complete API, see the [echo example](https://godoc.org/nhooyr.io/websocket#example-package--Echo).
38
38
39
39
### Server
40
40
@@ -111,6 +111,8 @@ Advantages of nhooyr.io/websocket:
111
111
- Gorilla's implementation is slower and uses [unsafe](https://golang.org/pkg/unsafe/).
112
112
- Full [permessage-deflate](https://tools.ietf.org/html/rfc7692) compression extension support
113
113
- Gorilla only supports no context takeover mode
114
+
- Uses [klauspost/compress](https://github.com/klauspost/compress) for optimized compression
115
+
- See [gorilla/websocket#203](https://github.com/gorilla/websocket/issues/203)
0 commit comments