Bu, aşağıda gösterildiği gibi gezgin arayüzü aracılığıyla mümkün olacaktır:
navigator.tcpPermission.requestPermission({remoteAddress:"127.0.0.1", remotePort:6789}).then(
() => {
// Permission was granted
// Create a new TCP client socket and connect to remote host
var mySocket = new TCPSocket("127.0.0.1", 6789);
// Send data to server
mySocket.writeable.write("Hello World").then(
() => {
// Data sent sucessfully, wait for response
console.log("Data has been sent to server");
mySocket.readable.getReader().read().then(
({ value, done }) => {
if (!done) {
// Response received, log it:
console.log("Data received from server:" + value);
}
// Close the TCP connection
mySocket.close();
}
);
},
e => console.error("Sending error: ", e)
);
}
);
Daha fazla ayrıntı w3.org tcp-udp-soketleri belgelerinde özetlenmiştir.
http://raw-sockets.sysapps.org/#interface-tcpsocket
https://www.w3.org/TR/tcp-udp-sockets/
Diğer bir alternatif ise Chrome Sockets kullanmaktır
Bağlantılar oluşturma
chrome.sockets.tcp.create({}, function(createInfo) {
chrome.sockets.tcp.connect(createInfo.socketId,
IP, PORT, onConnectedCallback);
});
Veri gönderme
chrome.sockets.tcp.send(socketId, arrayBuffer, onSentCallback);
Veri alıyor
chrome.sockets.tcp.onReceive.addListener(function(info) {
if (info.socketId != socketId)
return;
// info.data is an arrayBuffer.
});
Ayrıca şunu kullanma girişimini de kullanabilirsiniz HTML5 Web Sockets
(Bu, doğrudan TCP iletişimi olmasa da):
var connection = new WebSocket('ws://IPAddress:Port');
connection.onopen = function () {
connection.send('Ping'); // Send the message 'Ping' to the server
};
http://www.html5rocks.com/en/tutorials/websockets/basics/
Sunucunuz ayrıca pywebsocket gibi bir WebSocket sunucusuyla dinliyor olmalıdır, alternatif olarak Mozilla'da belirtildiği gibi kendi sunucunuzu yazabilirsiniz.