我已经通过运行此php脚本在我的共享godaddy主机上安装了node.js
https://github.com/niutech/node.php/blob//nodmastere.php
运行启动后,它说节点应用程序启动并提供pid。 当客户端发出事件时,它将在服务器上进行侦听并发送 返回到我的节点服务器代码中的同一客户端 向所有客户发出。 类似流程的服务器代码:
io.sockets.on( 'connection', function( client ) {
console.log( "New client !" );
client.on( 'likes', function( data ) {
console.log( 'like done ' + data.id);
io.sockets.emit( 'likes', { id: data.id } );
});
}
它会出现以下错误。
http://undefined/socket.io/1/?t=1465921249260无法加载资源:net :: ERR_NAME_NOT_RESOLVED
任何人都可以建议如何解决此问题。