How to trigger events from client and receive it in server node.js / express.js?
After reading through the docs of pusher there is information only about one way communication that is from server to client , here server is triggering an event in a particular channel and client is binding to that particular event after subscribing. But i need whole process other way around .
TheSheriff
Co-Founder, Founder, Entrepreneur & Problem Solver
Don't use pusher :P. Setup a deepstream.io server and run it all yourself.
You could just setup a pub / sub on both sides.
Either that or use a different method of communication channel between entities. What's the use case?