I have a pretty straight-forward question. I made a web game with NodeJS, and I can successfully play it by myself with multiple browser windows open side-by-side; however,
var http = require('http'); http.createServer(function (req, res) { }).listen(80, '127.0.0.1'); console.log('Server running at http://127.0.0.1:80/');