Using JMS messages with node.js

Is there any npm module (or just a library) for node.js to use messages from the JMS endpoint (tcp: //jms.someadress.com: 61616)

+6
source share
2 answers

If you are using RabbitMQ (or another AMQP , you can use node-amqp, a module for connecting to messaging servers using AMQP.

https://github.com/postwait/node-amqp.git

+4
source

Use the Stomp protocol with stomp-js or node-stomp-client . ActiveMQ supports Stomp , as does JBoss HornetQ. I assume that you are using ActiveMQ, since the port number corresponds to its default.

I assume that there should also be JMS-Stomp bridges that you can use with commercial JMS implementations.

+3
source

Source: https://habr.com/ru/post/900822/


All Articles