मुझे अपने मुद्दे का उत्तर नोड-पोस्टग्रेज रेपो पर मिला। ब्रिंक को उद्धृत करने के लिए:
इस मामले में सुनने का सही तरीका एक स्टैंडअलोन क्लाइंट का उपयोग करना है:
var pg = require ('pg'),
pgConnectionString = "postgres://user:[email protected]/db";
var client = new pg.Client(pgConnectionString);
client.connect();
client.query('LISTEN "article_watcher"');
client.on('notification', function(data) {
console.log(data.payload);
});