Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created June 8, 2017 20:27
Show Gist options
  • Save Kamilnaja/103e2857f3ee9a396a88a01a1aa1315d to your computer and use it in GitHub Desktop.
Save Kamilnaja/103e2857f3ee9a396a88a01a1aa1315d to your computer and use it in GitHub Desktop.
app.get('/texts', function (req, res) {
connection.query('SELECT * FROM texts', function (error, results, fields) {
if (error) throw error;
return res.send({error: false, data: results, message: 'Texts list'})
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment