How to connect to rabbitmq using javascript without nodejs

I am using a mobile application using the Titanium applicator.

In this application, I will need to use chat using RabbitMQ. I saw many examples of how to connect to the rabbitmq server using node js, but in my case this is not applicable and I could not find a separate javascript client.

I would like to know if there is a way to connect to RabbitMQ without a client or if there is a separate standalone javascript client?

Thank.

+5
source share
2 answers

Is this the RabbitMQ Web STOMP you are looking for? With SockJS, it works great even in older browsers and does not need Node.js or any web server you wrote.

+4

Web MQTT plugin - RabbitMQ HTML5. https://www.rabbitmq.com/web-mqtt.html

+2

All Articles