@6river/loopback2-component-pubsub
v3.1.3
Published
Google Pub/Sub loopback component
Downloads
192
Readme
loopback2-component-pubsub
Loopback v2.x component that injects pubsub client into the global app object.
The main difference with Loopback /change-stream channels is that this implementation creates only two observers (after save and after delete) per model and then streams the changes to keep-alive registered connections. In contrast Loopback creates two same observers for each connection.
Install and Setup
Install the company: npm install --save loopback2-component-pubsub
Add the following configuration to component-config.json:
{
...
"loopback2-component-pubsub": {
"projectId": "my-project",
...
},
...
}
Usage
Access pubsub client using app.pubsub
field.