Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/06/2013, 15:44
^^Naty^^
 
Fecha de Ingreso: mayo-2006
Mensajes: 20
Antigüedad: 18 años
Puntos: 0
Respuesta: Acceso mediante browser a script node.js

Quité la ip del script:

Código:
var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World\n');
}).listen(1300);

console.log('Server started');
En la línea de comandos aparece todo bien: Server started
Pero igual no pudo acceder a http://12.34.56.78:1300.

Perdón que pregunte tanto, pero no logro resolverlo y tampoco sé como podría hacer un debug para ubicar el error

Muchas gracias!