I am using the native Windows binary of Node.js, and in creating a HTTP object, with Socket.IO, I cannot access the server from any computers than the one the server is executing on. I have tried running it as an administrator, but it didn't work. I have a feeling it is within these lines:
var app = require('http').createServer(handler), io = require('socket.io').listen(app), fs = require('fs');
app.listen(8080, "0.0.0.0");
How would I fix these to make the server accessible externally? or would I have to proxy it through Nginx?