SockJS VS socket.io-client

Compare SockJS vs socket.io-client and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
SockJS socket.io-client
2 4
2,088 10,536
0.1% 0.4%
3.9 6.5
6 months ago 15 days ago
JavaScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

SockJS

Posts with mentions or reviews of SockJS. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-18.
  • WebSockets and Node.js - testing WS and SockJS by building a web app
    3 projects | dev.to | 18 Dec 2023
    SockJS is a library that mimics the native WebSockets API. Additionally, it will fall back to HTTP whenever a WebSocket fails to connect, or if the browser being used doesn’t support WebSockets. Like WS, SockJS requires a server counterpart; its maintainers provide both a JavaScript client library and a Node.js server library.
  • Top WebSocket libraries for Node.js in 2022
    12 projects | dev.to | 7 Jan 2022
    SockJS is a JavaScript library that provides communication between the client and the server in a way similar to the native WebSockets API. SockJS functions with a server counterpart in the form of sockjs-node and SockJS-client, a JavaScript client library.

socket.io-client

Posts with mentions or reviews of socket.io-client. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-07.
  • Where can I get socket.io.js client library to serve locally (without needing Internet connection)
    1 project | /r/webdev | 7 Mar 2023
  • Can't return a fonction in a var
    1 project | /r/flask | 3 Oct 2022
    from cmath import log from flask import Flask, render_template, request from flask_socketio import SocketIO, emit import json # https://flask-socketio.readthedocs.io/en/latest/ # https://github.com/socketio/socket.io-client app = Flask(__name__) app.config[ 'SECRET_KEY' ] = 'jsbcfsbfjefebw237u3gdbdc' socketio = SocketIO( app ) @app.route('/c') def hello(): return render_template( 'chat2.html' ) def messageRecived(): print( 'message was received!!!' ) @socketio.on( 'my event' ) def handle_my_custom_event( json ): print( 'recived my event: ' + str(json)) print(json) socketio.emit( 'my response', json, callback=messageRecived ) return json data = handle_my_custom_event() def creatlog(data): with open ('chat.json', 'w') as chat: json.dump(json) if __name__ == '__main__': socketio.run( app, debug = True )
  • Top WebSocket libraries for Node.js in 2022
    12 projects | dev.to | 7 Jan 2022
    Socket.IO’s primary use, however, is for facilitating real-time, bidirectional, and event-based communication between the browser and the server. Like ws, Socket.IO has a Node.js server and a JavaScript client library.
  • We Improved Reliability of Our WebSocket Connections
    4 projects | news.ycombinator.com | 28 Oct 2021
    > Conversely, if the client does not receive a PING packet within `pingInterval + pingTimeout`, it will consider that the connection is closed.

    Indeed looks like a solid way to solve the client-side recognition of a broken connection!

    --

    That said, I'm a little confused because I cannot find any mention of `pingTimeout` in their JS client [0], and `pingInterval` is only mentioned in an implementation of a test server [1]. I wonder if I'm looking at the wrong thing.

    [0]: https://github.com/socketio/socket.io-client/search?q=pingti...

What are some alternatives?

When comparing SockJS and socket.io-client you can also consider the following projects:

Socket.io - Realtime application framework (Node.JS server)

sockjs-client - WebSocket emulation - Javascript client

SocketCluster - Highly scalable realtime pub/sub and RPC framework

faye-websocket-node - Standards-compliant WebSocket client and server

Primus - :zap: Primus, the creator god of the transformers & an abstraction layer for real-time to prevent module lock-in.

sockette - The cutest little WebSocket wrapper! 🧦

deepstream.io - deepstream.io server

engine.io - The engine used in the Socket.IO JavaScript server, which manages the low-level transports such as HTTP long-polling and WebSocket.

Faye - Simple pub/sub messaging for the web

Straw - Realtime processing framework for Node.js