Skip to content

Instantly share code, notes, and snippets.

@brikis98
Created April 4, 2014 08:24
Show Gist options
  • Select an option

  • Save brikis98/9970387 to your computer and use it in GitHub Desktop.

Select an option

Save brikis98/9970387 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('hello world');
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment