Ik kreeg antwoord op mijn probleem op de node-postgres repo. Om Brianc te citeren:
De juiste manier om in dit geval te luisteren is door een standalone client te gebruiken:
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);
});