1 Star 0 Fork 4

50/nodejs

forked from 姿势喵/nodejs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
socketclient.js 579 Bytes
一键复制 编辑 原始数据 按行查看 历史
let net = require('net');
let client= new net.Socket();
//创建socket客户端
client.setEncoding('binary');
//连接到服务端
client.connect(3000,'127.0.0.1',function(){
client.write('hello server');
//向端口写入数据到达服务端
});
client.on('data',function(data){
console.log('from server:'+ data);
//得到服务端返回来的数据
});
client.on('error',function(error){
//错误出现之后关闭连接
console.log('error:'+error);
client.destory();
});
client.on('close',function(){
//正常关闭连接
console.log('Connection closed');
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/q50/nodejs.git
git@gitee.com:q50/nodejs.git
q50
nodejs
nodejs
master

搜索帮助