DEV Community

Messaging patterns in JavaScript

Kris Siegel on May 23, 2017

There are a great number of software development patterns that can be applied in JavaScript. Eventing, for example, provides a great mechanism to a...
Collapse
 
ajoslin103 profile image
allen joslin

I used mqtt to talk between my [Aurelia] front end SPA and the backend [python/nodeJS] support services -- was nicer then REST and/or cgi scripts

Another fellow at work used rabbitMQ for his server-side work and we were able to swap out my [mosquitto] mqtt message-broker with his rabbitMQ + mqtt plugin with no changes on my end

messaging is great!

Collapse
 
lepinekong profile image
lepinekong

Thanks just what I was looking for.