Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement IBM MQ with Nodejs?

How to implement IBM MQ with Nodejs?

Hello everyone, I need to implement a script that from nodejs can connect ibm qm this remotely, I have seen several documentation on the internet and seen for repository but it is not very clear to me, I could better clarify

this is the information that I have consulted: enter link description here enter link description here

like image 304
Michell Gonzales Avatar asked Aug 08 '26 15:08

Michell Gonzales


1 Answers

There is an npm library that you can use - https://www.npmjs.com/package/ibmmq

which has samples in its GitHub home repository - https://github.com/ibm-messaging/mq-mqi-nodejs

Further usage samples are available in the IBM MQ pattern samples repository - https://github.com/ibm-messaging/mq-dev-patterns/tree/master/Node.js

The patterns repository also has examples on how to connect over REST using the axios npm module - https://github.com/ibm-messaging/mq-dev-patterns/blob/master/serverless/openwhisk/mq-package/src/utillib/mqrestapi.js

like image 121
chughts Avatar answered Aug 11 '26 06:08

chughts