Skip to content

Instantly share code, notes, and snippets.

@dustinsmith1024
Created March 9, 2015 15:40
Show Gist options
  • Save dustinsmith1024/85524b4e765f6c2b919f to your computer and use it in GitHub Desktop.
Save dustinsmith1024/85524b4e765f6c2b919f to your computer and use it in GitHub Desktop.
PG Notify Sample
var pg = require ('pg');
var pgConString = "postgres://localhost/xxxx"
pg.connect(pgConString, function(err, client) {
if(err) {
console.log(err);
}
client.on('notification', function(msg) {
console.log(msg);
});
var query = client.query("LISTEN watchers");
var query2 = client.query("LISTEN model_watchers");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment