![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
websocket-event-codes
Advanced tools
A small Node module containing enumerated Websocket status codes.
A small Node module containing enumerated Websocket status codes. This module is library agnostic and has no dependencies.
Largely inspired by a similar module for HTTP status codes by prettymuchbryce
Via npm : npm install --save websocket-event-codes
Via yarn : yarn add websocket-event-codes
Name | Code | Description |
---|---|---|
NORMAL_CLOSURE | 1000 | The connection successfully completed whatever purpose for which it was created. |
GOING_AWAY | 1001 | The endpoint is going away, either because of a server failure or because the browser is navigating away from the page that opened the connection. |
PROTOCOL_ERROR | 1002 | The endpoint is terminating the connection due to a protocol error. |
UNSUPPORTED_DATA | 1003 | he connection is being terminated because the endpoint received data of a type it cannot accept (for example, a text-only endpoint received binary data). |
NO_STATUS_RECEIVED | 1005 | Reserved. Indicates that no status code was provided even though one was expected. |
ABNORMAL_CLOSURE | 1006 | Reserved. Used to indicate that a connection was closed abnormally (that is, with no close frame being sent) when a status code is expected. |
INVALID_FRAME_PAYLOAD_DATA | 1007 | The endpoint is terminating the connection because a message was received that contained inconsistent data (e.g., non-UTF-8 data within a text message). |
POLICY_VIOLATION | 1008 | The endpoint is terminating the connection because it received a message that violates its policy. This is a generic status code, used when codes 1003 and 1009 are not suitable. |
MESSAGE_TOO_BIG | 1009 | The endpoint is terminating the connection because a data frame was received that is too large. |
MISSING_EXTENSION | 1010 | The client is terminating the connection because it expected the server to negotiate one or more extension, but the server didn't. |
INTERNAL_ERROR | 1011 | The server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request. |
SERVICE_RESTART | 1012 | The server is terminating the connection because it is restarting. |
TRY_AGAIN_LATER | 1013 | The server is terminating the connection due to a temporary condition, e.g. it is overloaded and is casting off some of its clients. |
BAD_GATEWAY | 1014 | The server was acting as a gateway or proxy and received an invalid response from the upstream server. This is similar to 502 HTTP Status Code. |
TLS_HANDSHAKE | 1015 | Reserved. Indicates that the connection was closed due to a failure to perform a TLS handshake (e.g., the server certificate can't be verified). |
FAQs
A small Node module containing enumerated Websocket status codes.
The npm package websocket-event-codes receives a total of 4,704 weekly downloads. As such, websocket-event-codes popularity was classified as popular.
We found that websocket-event-codes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.