File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,9 @@ See [example_test.go](example_test.go) for more examples.
111111
112112## Comparison
113113
114- ### [ gorilla/websocket] ( https://github.com/gorilla/websocket )
114+ ### gorilla/websocket
115+
116+ https://github.com/gorilla/websocket
115117
116118This package is the community standard but it is very old and over timennn
117119has accumulated cruft. There are many ways to do the same thing and the API
@@ -122,13 +124,17 @@ overall is just not very clear. Just compare the godoc of
122124The API for nhooyr/ws has been designed such that there is only one way to do things
123125and with HTTP/2 in mind which makes using it correctly and safely much easier.
124126
125- ### [ x/net/websocket] ( https://godoc.org/golang.org/x/net/websocket )
127+ ### x/net/websocket
128+
129+ https://godoc.org/golang.org/x/net/websocket
126130
127131Unmaintained and the API does not reflect WebSocket semantics. Should never be used.
128132
129133See https://github.com/golang/go/issues/18152
130134
131- ### [ gobwas/ws] ( https://github.com/gobwas/ws )
135+ ### gobwas/ws
136+
137+ https://github.com/gobwas/ws
132138
133139This library has an extremely flexible API but that comes at the cost of usability
134140and clarity. Its just not clear how to do things in a safe manner.
You can’t perform that action at this time.
0 commit comments