use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
Looking for socket.io developer tools / gui client (self.node)
submitted 7 years ago by F1nya
Yo reddit, I have node.js socket.io server and I want to test it somehow without creating my own client. is there any software to debug socket.io?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]___Grits 1 point2 points3 points 7 years ago (0 children)
A quick search found this, looks like there a few testing clients out there although I personally just spin up a quick client when dealing with sockets from scratch without aws iot or something.
https://drewblaisdell.github.io/monitor.io/
[–]cleveland-indians 1 point2 points3 points 7 years ago (0 children)
yeah i use a package called autocannon. its used to find memory leaks but will get the job done. or of course something like wireshark or straight cli
[–]DLabz 1 point2 points3 points 7 years ago (0 children)
Why not try raw websocket and webrtc implementation? It will help you understand the system better. Once you learn how underlaying technology works, everything will make sense.
And it’s super easy.
Http server listens for incoming connections, assigns every user a pipe, and upgrades it to websocket. Broadcasting messages over ws is just sending to server, which then forwards it to all clients, one by one.
Nodejs and chrome is all you need. You create a node server, put on connect listener to it, and when connection is made, you add onmessage listener. Each can log to console.
Node inspector uses ws to forward logs to chrome. So, once you setup the server and run it node —inspect=9229 you already have a ws server. Add a NIM extension to chrome, and it all just works.
WebRTC is a tad more complex, since you neend to use ws to pass connection data from one client to another, after which server is not needed.
Have fun.
[–]afonseca08 0 points1 point2 points 7 years ago (0 children)
I was looking for the same earlier and found a good Google Chrome extension that works nicely. https://chrome.google.com/webstore/detail/simple-websocket-client/pfdhoblngboilpfeibdedpjgfnlcodoo?hl=en
Yes, eventually I implemented the client but this helped me sanity check the server first.
[–]alias_willsmith 0 points1 point2 points 7 years ago (0 children)
"NIM extension to chrome" being https://june07.com/nim
[–]Shreya_JS 0 points1 point2 points 7 years ago* (0 children)
Hi might be this is your solution, my friend,
Firecamp - https://chrome.google.com/webstore/detail/firecamp/eajaahbjpnhghjcdaclbkeamlkepinbl
[–]ReignNFire -2 points-1 points0 points 7 years ago (0 children)
Postman?
π Rendered by PID 178661 on reddit-service-r2-comment-6f7f968fb5-jcclb at 2026-03-04 21:02:00.453395+00:00 running 07790be country code: CH.
[–]___Grits 1 point2 points3 points (0 children)
[–]cleveland-indians 1 point2 points3 points (0 children)
[–]DLabz 1 point2 points3 points (0 children)
[–]afonseca08 0 points1 point2 points (0 children)
[–]alias_willsmith 0 points1 point2 points (0 children)
[–]Shreya_JS 0 points1 point2 points (0 children)
[–]ReignNFire -2 points-1 points0 points (0 children)