Skip to content

Instantly share code, notes, and snippets.

@adamhalasz
Last active December 11, 2015 13:58
Show Gist options
  • Save adamhalasz/4611088 to your computer and use it in GitHub Desktop.
Save adamhalasz/4611088 to your computer and use it in GitHub Desktop.
app.get('/query', function(request, response){
// Query your database
db.query('SELECT * FROM users', function(rows){
// Push notification to dan
socket.emit('database_query_executed', 'to_dan', rows);
// End request
response.end('success');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment