https://github.com/ibm-messaging/seneca-mqlight-transport
DEPRECATED: Implementation of a transport layer for using MQ Light with the Seneca microservices framework
https://github.com/ibm-messaging/seneca-mqlight-transport
Last synced: 6 months ago
JSON representation
DEPRECATED: Implementation of a transport layer for using MQ Light with the Seneca microservices framework
- Host: GitHub
- URL: https://github.com/ibm-messaging/seneca-mqlight-transport
- Owner: ibm-messaging
- License: epl-1.0
- Created: 2015-05-05T14:27:40.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-07-15T19:39:31.000Z (almost 5 years ago)
- Last Synced: 2023-08-12T16:11:11.572Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 4
- Watchers: 9
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deprecation notice
Please note, this repository is deprecated and no longer supported.
It is highly recommended that you ensure that package dependencies are updated to the latest version to get the latest security patches.# Project details
This project contains an implementation for using MQ Light as the transport with the [seneca](http://senecajs.org) micro-services framework.
```javascript
var seneca = require('seneca')()
.use('mqlight-transport')
```
this specifies that this instance of seneca should import the mqlight-transport```javascript
seneca.listen({type:'mqlight'})
```
says that the services defined for this seneca instance should be made available over MQ Light```javascript
seneca.client({type:'mqlight'})
```
says that this instance of seneca will use MQ Light when calling services as a clientThis project is licensed under the Eclipse Public License, details can be found in the file `LICENSE`