登录 注册
当前位置:主页 > 资源下载 > 5 > clouds-gate是clouds的Gate服务程序

clouds-gate是clouds的Gate服务程序

  • 更新:2024-11-06 15:43:38
  • 大小:9KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

clouds-socket 安装 $ npm install clouds-socket --save 使用 服务端: var socket = require('clouds-socket'); // 创建服务端实例 var server = socket.createServer({ // TCP连接 host: '127.0.0.1', port: 7001 // UNIX domain 连接 // path: '/tmp/clouds.sock' }); // 当有新客户端连接时,触发connection事件 server.on('connection', function (client) { // 当收到客户端发送来的数据时,触发data事件 client.on('data', function (data) { console.log(da