2023-11-28 11:05:07 +00:00
|
|
|
# gorilla/websocket
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2023-11-28 11:05:07 +00:00
|
|
|
![testing](https://github.com/gorilla/websocket/actions/workflows/test.yml/badge.svg)
|
|
|
|
[![codecov](https://codecov.io/github/gorilla/websocket/branch/main/graph/badge.svg)](https://codecov.io/github/gorilla/websocket)
|
|
|
|
[![godoc](https://godoc.org/github.com/gorilla/websocket?status.svg)](https://godoc.org/github.com/gorilla/websocket)
|
|
|
|
[![sourcegraph](https://sourcegraph.com/github.com/gorilla/websocket/-/badge.svg)](https://sourcegraph.com/github.com/gorilla/websocket?badge)
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2023-11-28 11:05:07 +00:00
|
|
|
Gorilla WebSocket is a [Go](http://golang.org/) implementation of the [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol.
|
2021-08-12 20:03:24 +01:00
|
|
|
|
2023-11-28 11:05:07 +00:00
|
|
|
![Gorilla Logo](https://github.com/gorilla/.github/assets/53367916/d92caabf-98e0-473e-bfbf-ab554ba435e5)
|
2022-05-02 14:05:18 +01:00
|
|
|
|
|
|
|
|
2021-08-12 20:03:24 +01:00
|
|
|
### Documentation
|
|
|
|
|
|
|
|
* [API Reference](https://pkg.go.dev/github.com/gorilla/websocket?tab=doc)
|
|
|
|
* [Chat example](https://github.com/gorilla/websocket/tree/master/examples/chat)
|
|
|
|
* [Command example](https://github.com/gorilla/websocket/tree/master/examples/command)
|
|
|
|
* [Client and server example](https://github.com/gorilla/websocket/tree/master/examples/echo)
|
|
|
|
* [File watch example](https://github.com/gorilla/websocket/tree/master/examples/filewatch)
|
2023-11-28 11:05:07 +00:00
|
|
|
* [Write buffer pool example](https://github.com/gorilla/websocket/tree/master/examples/bufferpool)
|
2021-08-12 20:03:24 +01:00
|
|
|
|
|
|
|
### Status
|
|
|
|
|
|
|
|
The Gorilla WebSocket package provides a complete and tested implementation of
|
|
|
|
the [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol. The
|
|
|
|
package API is stable.
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
|
|
|
go get github.com/gorilla/websocket
|
|
|
|
|
|
|
|
### Protocol Compliance
|
|
|
|
|
|
|
|
The Gorilla WebSocket package passes the server tests in the [Autobahn Test
|
|
|
|
Suite](https://github.com/crossbario/autobahn-testsuite) using the application in the [examples/autobahn
|
|
|
|
subdirectory](https://github.com/gorilla/websocket/tree/master/examples/autobahn).
|