如何使用 Nodejs 实现 IBM MQ?
如何使用 Nodejs 实现 IBM MQ?
大家好,我需要实现一个脚本,从nodejs可以远程连接ibm qm,我在互联网上看到了几个文档并看到了存储库,但我不太清楚,我可以更好地澄清
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一个 npm 库 - https://www.npmjs.com/package/ibmmq< /a>
其 GitHub 主存储库中有示例 -
https://github.com/ibm-messaging/mq-mqi-nodejs
IBM MQ 模式示例存储库中提供了更多使用示例 - https://github.com/ibm-messaging/mq-dev-patterns/tree/master/Node.js
模式存储库还提供了有关如何使用 axios 通过 REST 连接的示例 npm 模块 - https://github.com/ibm-messaging/mq-dev-patterns/blob/master/serverless/openwhisk/mq-package/src/utillib/mqrestapi.js
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