Skip to content

Instantly share code, notes, and snippets.

@adamhalasz
Last active August 29, 2015 14:00
Show Gist options
  • Save adamhalasz/cf44748c2901e247c423 to your computer and use it in GitHub Desktop.
Save adamhalasz/cf44748c2901e247c423 to your computer and use it in GitHub Desktop.
response.html() node
// Listen on http://example.com/ and respond with index.html
app.get('/', function(request, response, mysql){
response.html('/index.html', { title: 'Diet.js Example!' });
mysql.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment