I use socket.io-client for Javascript server on JAVA and when I enter address 'ws://10.201.223.67:9902/' the request is not by 'ws' but by 'http'. It returns
I wanted to make a connection on the socket.io so I used python-socket.io in the backend (FastAPI) and socket.io-client for the frontend(React.js) but I have be
i'm working on an app which communicate with server via socket.io, users in my app have unique ids which i want to use on my server so i made a small class whic
my nestjs WebSocketGateway server is working perfectly in dev mode but in production mode i can see those clients that trying to connect but the server raise th
My goal is to emit to only one client by using the default room that is being created by socketIo. The room id and client id match. I checked that by logging it
I am trying to send data from server to flutter app using socketIO. Although I am able to connect and emit, the server is not able to send data to client side.
I am building a chat application like discord, I can successfully send a chat message, and i am trying to send emojis, files like image, pdf, docx, links. How t
I'm trying to stream microphone from my browser to a server running a Python service connected to the google cloud speech-to-text. For the transfer I'm using so
I am using socket.io for my project social network web, when user connect I join, but when I get message from socket.io by group chat, My component render messa
I use Bloc and repositories, I'm going to use the socket in different places in the project. each api package has its own events but shares the same socket. I w
In my frontend app I implemented mechanism which splits file into chunks and then sends their parts in a for loop like this (chunks is an array of strings - con
I'm trying to emit message from PHP code to websocket server built with PHPSocket.io Emitter code: <?php require_once __DIR__ . '/vendor/autoload.php'; $emit
Frameworks used: Next.js, Socket.io, React I am making a simple messaging app. I am basically just emitting a message someone types, sending that message to the
i have a simple socket.IO server, and a client that connects to it : socket = io('http://localhost:' + port + '/chat', { reconnection: false,
First of all, I'm very new to socket.io, so if someone would lend a helping hand it would mean a lot! :) I am making a simple chat app were a user can create or
I am new to react native and I have downloaded a project from github, and I see redux and socket.io in the package.json file, is there any need to install them
I am using replit to host a chat server using Node.js and Socket.io. I used the getting started guide provided by socket.io (https://socket.io/get-started/chat)
Here is the code of my socket server const io = require("socket.io")(8080, { cors: { // origin: "http://localhost:3000", origin: "https://mern-bubble.he
I have a frontend application(VUE JS) I have a backend (Nest JS) Vue JS app get data from backend via websockets using vue-socket.io-extended library When Vue J
Please let me know if the code I have written for one-to-one chat is correct? and how do I know that messages are emitting from the backend here I am assigning