good morning!!!!

Skip to content
Snippets Groups Projects
doc.go 1000 B
Newer Older
// +build !js

// Package websocket implements the RFC 6455 WebSocket protocol.
Anmol Sethi's avatar
Anmol Sethi committed
//
Anmol Sethi's avatar
Anmol Sethi committed
// https://tools.ietf.org/html/rfc6455
Anmol Sethi's avatar
Anmol Sethi committed
//
Anmol Sethi's avatar
Anmol Sethi committed
// Use Dial to dial a WebSocket server.
//
// Use Accept to accept a WebSocket client.
Anmol Sethi's avatar
Anmol Sethi committed
//
// Conn represents the resulting WebSocket connection.
Anmol Sethi's avatar
Anmol Sethi committed
//
// The examples are the best way to understand how to correctly use the library.
Anmol Sethi's avatar
Anmol Sethi committed
// The wsjson and wspb subpackages contain helpers for JSON and protobuf messages.
Anmol Sethi's avatar
Anmol Sethi committed
//
Anmol Sethi's avatar
Anmol Sethi committed
// More documentation at https://nhooyr.io/websocket.
// The client side supports compiling to Wasm.
Anmol Sethi's avatar
Anmol Sethi committed
// It wraps the WebSocket browser API.
Anmol Sethi's avatar
Anmol Sethi committed
//
Anmol Sethi's avatar
Anmol Sethi committed
// See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
//
// Some important caveats to be aware of:
//   - Accept always errors out
//   - Conn.Ping is no-op
//   - HTTPClient, HTTPHeader and CompressionMode in DialOptions are no-op
//   - *http.Response from Dial is &http.Response{} with a 101 status code on success
package websocket // import "nhooyr.io/websocket"