Skip to content

Instantly share code, notes, and snippets.

@komsit37
Created September 11, 2015 13:03
Show Gist options
  • Select an option

  • Save komsit37/427fe18733bd7dec49d6 to your computer and use it in GitHub Desktop.

Select an option

Save komsit37/427fe18733bd7dec49d6 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.use(express.static('public'));
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment