文件名称:tower:创建频道并连接到它们
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-15 16:34:59
JavaScript
塔 创建通道组并使用套接字连接到它们。 npm install tower-channels 例子 var io = require ( 'segmentio/tower' ) ; var tower = new Tower ( ) ; var channel = tower . channel ( 'news' ) ; channel . on ( 'connection' , function ( socket , options ) { console . log ( 'new connection' ) ; socket . on ( 'update' , function ( ) { console . log ( 'socket called update' ) ; } ) ; } ) ; var first = channel . connect (
【文件预览】:
tower-master
----.gitignore(29B)
----package.json(645B)
----index.js(2KB)
----README.md(908B)
----test()
--------index.js(3KB)