npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

websocket-event-codes

v1.1.0

Published

A small Node module containing enumerated Websocket status codes.

Downloads

16,282

Readme

Websocket Event Codes

Overview

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

Installation

Via npm : npm install --save websocket-event-codes

Via yarn : yarn add websocket-event-codes

Event codes table

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).