Я пишу приложение node.js на Heroku и используя
Документация использует такой код:
pg.connect(conString, function(err, client) {
// Use the client to do things here
});
var conString = process.env.DATABASE_URL || "tcp://postgres:[email protected]/postgres";
var client = new pg.Client(conString);
client.connect();
// client is a global so you can use it anywhere now