书栈网 · BookStack 本次搜索耗时 0.032 秒,为您找到 415 个相关结果.
  • 4.1.2 服务器端口选项 new_server_port_options

    new Server(port[,options]) new Server(port[,options]) prot (Number) 监听的端口(创建新的http.server ) options (object) 请参阅上面 的可用选项列表。 const io = require ( 'socket.io' )( 3000 ,{ ...
  • WEBSOCKETS

    Websocket 网关 安装 概述 多个响应 异步响应 生命周期挂钩 服务器 异常过滤器 过滤器 继承 管道 绑定管道 守卫 绑定守卫 拦截器 适配器 拓展 socket.io ws 库 高级(自定义适配器) 示例 译者署名 Websocket 网关 本文档中其他地方讨论的大多数概念,如依赖注入、装饰器、异...
  • 初始化示例:使带有自签名证书

    初始化示例:使带有自签名证书 初始化示例:使带有自签名证书 // 服务端 const fs = require ( 'fs' ); const server = require ( 'https' ). createServer ({ key : fs . readFileSync ( 'server-key.pem' ),...
  • 输出到 Redis

    输出到 Redis 配置示例 Usage basical use case notification use case 扩展方式 输出到 Redis 配置示例 input { stdin {} } output { redis { data_type => "channel" ...
  • Broadcasting

    Broadcasting Introduction Configuration Broadcast Service Provider CSRF Token Driver Prerequisites Pusher Channels Redis Socket.IO Queue Prerequisites Concept Overview Usi...
  • Emitting events

    Emitting events Basic emit Acknowledgements Volatile events Emitting events There are several ways to send events between the server and the client. Basic emit The Socket.I...
  • Emitting events

    Emitting events Basic emit Acknowledgements Volatile events Emitting events There are several ways to send events between the server and the client. Basic emit The Socket.I...
  • 3.1.5 初始化示例-查询参数

    初始化示例:带查询参数 初始化示例:带查询参数 const socket = io ( 'http://localhost?token=abc' ); // 服务端 const io = require ( 'socket.io' )() // 中间件 io . use (( socket , next )=>{ ...
  • Broadcasting

    Broadcasting Introduction Configuration Broadcast Service Provider CSRF Token Driver Prerequisites Pusher Channels Redis Socket.IO Queue Prerequisites Concept Overview Usi...
  • WebSocket 服务器

    WebSocket 服务器 WebSocket 服务器 WebSocket 协议需要服务器支持。各种服务器的实现,可以查看维基百科的列表 。 常用的 Node 实现有以下三种。 µWebSockets Socket.IO WebSocket-Node 具体的用法请查看它们的文档,本教程不详细介绍了。