Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
plumbus11948yI used web sockets using node.js server and socket.io javascript library. Was for telling connected clients about certain user generated events. Basically an extension of an example node js chat server example i found
-
plumbus11948y@guru well... if user A did action foo user B would see a notification. Would push to everyone connected iirc. But I didn't have the server sending anything periodically or unsolicited
-
hjk10157318yDid a few things in Go with it. Fairly easy to implement a clean event based system.
Also build a slackbot based on https://opsdash.com/blog/... -
I was using Socket.io on a Windows server and setting up the app to read the SSL certificate was kind of a pain.
-
brod100268yWe use it for our ng-mongoose and mongoose-ws package, basically mongoose (odm for mongodb) in the browser for Angular and "realtime" db everywhere.
Quite handy. -
arnyek5578yI used it for a client's event mobile page. An admin pushes different types of contents for the visitors in realtime. New visitors see the last pushed stuff. Backend in php (I know it's not for this, but sysadmin only enabled php for the daemon running the server), frontend in simple jquery.
-
We use websocket to push live stock ticker to several thousand users. It's also used to push generic messages to users. Benchmarked several stacks and languages and settled with Golang. People say nodejs is best but if you want scale forget about it and go with Golang or Elixir.
Related Rants
Hi Guys,
Has anyone used websockets in their projects?
Want to know what problem did it solved and what kind of project it was ?
undefined
web
websockets