WebSocket-Node

A WebSocket Implementation for Node.JS (Draft -08 through the final RFC 6455) (by theturtle32)

WebSocket-Node Alternatives

Similar projects and alternatives to WebSocket-Node

  1. Socket.io

    853 WebSocket-Node VS Socket.io

    Realtime application framework (Node.JS server)

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.

    SurveyJS logo
  3. upm

    ⠕ Universal Package Manager - Python, Node.js, Ruby, Emacs Lisp.

  4. Windows-classic-samples

    This repo contains samples that demonstrate the API used in Windows classic desktop applications.

  5. VbAsyncSocket

    12 WebSocket-Node VS VbAsyncSocket

    Sockets with pure VB6 impl of TLS encryption

  6. webxcel

    5 WebSocket-Node VS webxcel

    🤔 A REST backend built with plain VBA Microsoft Excel macros. Yes. Macros.

  7. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  8. vba-websocket

    VBA Websocket Sample (Echo Server Client)

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better WebSocket-Node alternative or higher similarity.

WebSocket-Node discussion

Log in or Post with

WebSocket-Node reviews and mentions

Posts with mentions or reviews of WebSocket-Node. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-05.
  • WebSockets and HTTP/2 with SSE
    3 projects | dev.to | 5 Jul 2025
    // We'll be using the https://github.com/theturtle32/WebSocket-Node // WebSocket implementation var WebSocketServer = require('websocket').server; var http = require('http'); var server = http.createServer(function(request, response) { // process HTTP request. }); server.listen(1337, function() { }); // create the server wsServer = new WebSocketServer({ httpServer: server }); // WebSocket server wsServer.on('request', function(request) { var connection = request.accept(null, request.origin); // This is the most important callback for us, we'll handle // all messages from users here. connection.on('message', function(message) { // Process WebSocket message }); connection.on('close', function(connection) { // Connection closes }); });
  • Error using OCX “Class not registered” [VBA PowerPoint]
    13 projects | /r/vba | 8 Apr 2021
    Also, I should have specified, uses package from: https://github.com/theturtle32/WebSocket-Node
  • A Casual Look Into Options For Building Real-time Apps
    1 project | dev.to | 3 Feb 2021
    A WebSocket Implementation for Node.JS
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 14 Jul 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more →

Stats

Basic WebSocket-Node repo stats
3
3,774
2.4
about 1 year ago

theturtle32/WebSocket-Node is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of WebSocket-Node is JavaScript.


Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?