Skip to content

Commit fd5c603

Browse files
authored
Update README.md
1 parent 12c0de9 commit fd5c603

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# `gows`
2-
Simple WebSocket ([RFC6455](https://datatracker.ietf.org/doc/rfc6455/)) library in Go
2+
Barebones WebSocket ([RFC6455](https://datatracker.ietf.org/doc/rfc6455/)) library in Go
33

44
**What it offers:**
55
- Simple way to upgrade an HTTP connection to a WebSocket connection
6-
- Simple way to serialize and deserialize individual WebSocket frames
6+
- Functions to serialize and deserialize individual WebSocket frames
77

88
**What it doesn't do:**
99
- Doesn't handle message fragmentation, but you can do that yourself by reading `Fin` and `Opcode`. For more information, see section 5.4 of [RFC6455](https://datatracker.ietf.org/doc/rfc6455/)
10-
- Doesn't automatically respond to PING frames.
10+
- Doesn't automatically respond to PING frames
11+
- Doesn't really offer an opinion on how to handle opcodes or other flags at all
1112

1213
## Installation
1314
`go get github.com/zachshattuck/gows`
@@ -73,4 +74,4 @@ func main() {
7374
}
7475

7576
}
76-
```
77+
```

0 commit comments

Comments
 (0)