我正在golang中建立一个tcp客户端,以连接到nodejs中的服务器。 Golang客户端将被编译为Webassembly(wasm),并通过npm的http-server命令提供服务。
该程序在编译go run main.go
时运行良好,但不适用于wasm。即使我从场景中取出net.dial(...)
函数,它也可以工作。
使用nodejs编写的服务器,其中main.go连接到该服务器
//server.js
const net = require('net');
const port = 8081;
const host = '127.0.0.1';
const server = net.createServer();
server.listen(port, host, () => {
console.log('TCP Server is running on port ' + port + '.');
});
let sockets = [];
server.on('connection', function(sock) {
console.log('CONNECTED: ' + sock.remoteAddress + ':' +
sock.remotePort);
sockets.push(sock);
sock.on('data', function(data) {
console.log('DATA ' + sock.remoteAddress + ': ' + data);
let cmp = Buffer.compare(data, Buffer.from('Connect\n'));
// Write the data back to all the connected, the client
will receive it as data from the server
sockets.forEach(function(s, index, array) {
if (cmp != 0 && s!= sock) {
console.log('send data to ' + s.remotePort + ': ' +
data);
s.write(data+'\n');
// s.write(s.remoteAddress + ':' + s.remotePort +
" said " + data + '\n');
}
});
});
});
在某些情况下可以正常工作。 最小的golang代码:
//main.go
func main() {
c := make(chan struct{}, 0)
// ERROR HAPPENS HERE
_, err := net.Dial("tcp", "127.0.0.1:8081")
// -------------------------
if err != nil {
fmt.Println(err)
}
<-c
}
这是当以wasm运行时在浏览器控制台上输出的内容:
dial tcp 127.0.0.1:8081: Connection refused
如果正常go run main.go
,这是server.js上的输出:
CONNECTED: 127.0.0.1:50577
表示连接成功。
答案 0 :(得分:1)
这种行为的原因是,出于安全原因,wasm编译的二进制文件在沙箱环境中执行,因此不支持tcp \ udp套接字。但是,您尝试使用websockets模拟所需的行为。