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 →
WebSocket-Node Alternatives
Similar projects and alternatives to WebSocket-Node
-
-
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.
-
-
-
Windows-classic-samples
This repo contains samples that demonstrate the API used in Windows classic desktop applications.
-
-
-
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.
-
WebSocket-Node discussion
WebSocket-Node reviews and mentions
-
WebSockets and HTTP/2 with SSE
// 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]
Also, I should have specified, uses package from: https://github.com/theturtle32/WebSocket-Node
-
A Casual Look Into Options For Building Real-time Apps
A WebSocket Implementation for Node.JS
-
A note from our sponsor - InfluxDB
www.influxdata.com | 14 Jul 2025
Stats
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.