node-pg-pubsub
node-pg-pubsub copied to clipboard
A Publish/Subscribe implementation on top of PostgreSQL NOTIFY/LISTEN
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/voxpelli/node-pg-pubsub). ## Deprecations / Replacements > [!WARNING] These...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | [`^8.21.0` -> `^8.25.0`](https://renovatebot.com/diffs/npm/eslint/8.21.0/8.25.0) |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [npm-run-all2](https://togithub.com/bcomnes/npm-run-all2) | [`^6.0.1` -> `^6.0.2`](https://renovatebot.com/diffs/npm/npm-run-all2/6.0.1/6.0.2) | [](https://docs.renovatebot.com/merge-confidence/)...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/chai](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chai) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`^4.3.1` -> `^4.3.3`](https://renovatebot.com/diffs/npm/@types%2fchai/4.3.1/4.3.3) |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | [`~4.6.0` -> `~4.8.4`](https://renovatebot.com/diffs/npm/typescript/4.6.2/4.8.4) |...
My linter [raises this error](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-var-requires.md) suggestion: instead of : ``` export = PGPubsub; /** @typedef {(payload: any) => void} PGPubsubCallback */ declare class PGPubsub extends NodeJS.EventEmitter { ``` use ```...
Hi, I am not able to connect with my database hosted in heroku with the postgress db addon: https://www.heroku.com/postgres I am able to connect with package pg by setting ssl...
``` var PGPubsub = require('pg-pubsub'); var pubsubInstance = new PGPubsub('postgres://xxxx:[email protected]/xxxx'); pubsubInstance.addChannel('testChannel'); // pubsubInstance is a full EventEmitter object that sends events on channel names pubsubInstance.once('testChannel', function (channelPayload) { console.log(channelPayload); });...
Could you please guide how to use this module in a multiple node instance env. Will all node instances receive the notification?
Firstly, thanks for your work in developing and sharing this awesome lib! I've encountered an error that seems to surface a day or two after starting my node api in...