Created
January 6, 2014 22:23
-
-
Save nvcexploder/8290885 to your computer and use it in GitHub Desktop.
Address in Use Problem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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