Skip to content

Instantly share code, notes, and snippets.

@gnilchee
Created March 9, 2016 02:45
Show Gist options
  • Save gnilchee/df7c9514fa0ab7cfae47 to your computer and use it in GitHub Desktop.
Save gnilchee/df7c9514fa0ab7cfae47 to your computer and use it in GitHub Desktop.
Hello Greg example using Express.js
var express = require('express');
var app = express();
app.get('/', function(req, res){
//res.send('Hello Greg!');
res.json({firstName: 'Greg'});
});
var server = app.listen(3000, function() {
console.log('listening on port 3000');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment