Skip to content

Instantly share code, notes, and snippets.

@nvcexploder
Created January 6, 2014 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvcexploder/8290885 to your computer and use it in GitHub Desktop.
Save nvcexploder/8290885 to your computer and use it in GitHub Desktop.
Address in Use Problem
var hapi = require('hapi');
var server = hapi.createServer('localhost', 8080);
var server2 = hapi.createServer('localhost', 8080);
server.start();
server2.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment