十几行代码写的一个<端口重定向>程序(nodejs)
相信很多情况下大家都需要用到端口重定向的程序,不久前用Nodejs写了一个,现在给出代码
var net = require('net');
var server = net.createServer(function(c) {
//客户端连接
console.log('client connected');
//创建新的连接到远程ip
var srv = net.connect(80,'192.168.100.1', function() {
console.log('remote connected');
//服务端tcp流重定向到客户端
srv.pipe(c);
});
//客户端tcp流重定向到远程
c.pipe(srv);
c.on('close',function(){
console.log('client close')
});
});
//监听本地8000端口
server.listen(8000, function() {
console.log('server bound');
});
var server = net.createServer(function(c) {
//客户端连接
console.log('client connected');
//创建新的连接到远程ip
var srv = net.connect(80,'192.168.100.1', function() {
console.log('remote connected');
//服务端tcp流重定向到客户端
srv.pipe(c);
});
//客户端tcp流重定向到远程
c.pipe(srv);
c.on('close',function(){
console.log('client close')
});
});
//监听本地8000端口
server.listen(8000, function() {
console.log('server bound');
});
上面代码的关键是stream的pipe函数,基本原理是把一个stream读到的数据重定向到另外一个stream的输入。
另外一个就是nodejs是单线程、异步、事件回调,这个总的来说接近C#里的BeginRead和EndRead这样的异步函数调用。
nodejs有很多现成类库,如果写一些小工具或者网络程序,个人觉得是一个非常好的选择。
目前本人已经用nodejs写了一个siri的代理服务器,可以让iphone4使用siri,siri相关的一些内容可以访问 http://www.sirinode.com
关于node js,大家可以到官网http://www.nodejs.org看看,里面有详细的文档