websocket/README.md

39 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

# Gorilla WebSocket
2013-10-16 20:41:47 +04:00
2022-12-12 15:36:04 +03:00
[![GoDoc](https://godoc.org/git.internal/re/websocket?status.svg)](https://godoc.org/git.internal/re/websocket)
[![CircleCI](https://circleci.com/gh/gorilla/websocket.svg?style=svg)](https://circleci.com/gh/gorilla/websocket)
2013-10-29 17:29:20 +04:00
Gorilla WebSocket is a [Go](http://golang.org/) implementation of the
2013-10-16 20:41:47 +04:00
[WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol.
---
2022-12-09 19:03:16 +03:00
**The Gorilla project has been archived, and is no longer under active maintainenance. You can read more here: https://github.com/gorilla#gorilla-toolkit**
---
2013-10-29 17:29:20 +04:00
### Documentation
2013-10-16 20:41:47 +04:00
2022-12-12 15:36:04 +03:00
* [API Reference](https://pkg.go.dev/git.internal/re/websocket?tab=doc)
* [Chat example](https://git.internal/re/websocket/tree/master/examples/chat)
* [Command example](https://git.internal/re/websocket/tree/master/examples/command)
* [Client and server example](https://git.internal/re/websocket/tree/master/examples/echo)
* [File watch example](https://git.internal/re/websocket/tree/master/examples/filewatch)
2013-10-16 20:41:47 +04:00
2013-10-29 17:29:20 +04:00
### Status
2013-10-16 20:41:47 +04:00
2013-10-29 17:29:20 +04:00
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.
2013-10-16 20:41:47 +04:00
2013-10-29 17:29:20 +04:00
### Installation
2013-10-16 20:41:47 +04:00
2022-12-12 15:36:04 +03:00
go get git.internal/re/websocket
2013-10-16 20:41:47 +04:00
2013-10-29 17:29:20 +04:00
### 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
2022-12-12 15:36:04 +03:00
subdirectory](https://git.internal/re/websocket/tree/master/examples/autobahn).
2013-10-29 17:29:20 +04:00