Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active April 2, 2017 21:51
Show Gist options
  • Save zmts/f62d42e4ac83b8995bf2 to your computer and use it in GitHub Desktop.
Save zmts/f62d42e4ac83b8995bf2 to your computer and use it in GitHub Desktop.
sql, postgresql, expressjs, nodejs
app.get("/pg", function(req, res) {
connection.any("SELECT * FROM people", true)
.then(function(data) {
res.format({
"application/json": function() {
res.status(200).send(data);
console.log(data);
}
});
})
.catch(function(error) {
console.log("ERROR:", error);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment