将Python客户端连接到节点js服务器

时间:2014-04-05 21:13:23

标签: python node.js sockets network-programming socket.io

我正在尝试将我的python客户端连接到Node JS服务器, 我想知道如何设置节点JS服务器来为Python客户端提供服务。

我的Python客户端在

之下
import socket

TCP_IP = '127.0.0.1'
TCP_PORT = 8888
BUFFER_SIZE = 1024
MESSAGE = "Hello, World!"

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
s.send(MESSAGE)
data = s.recv(BUFFER_SIZE)
s.close()

print "received data:", data

1 个答案:

答案 0 :(得分:0)

在node.js中使用http模块

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain; charset=UTF-8'});
  res.end('Hello World\n');
}).listen(8888, '127.0.0.1');
console.log('Server running at http://127.0.0.1:8888/');