We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
这个框架对于前端就是引入socket.io.js,两行代码就实现消息推送系统,另外浏览器兼容性如何?长连接推送(websocket或者comet这个主要是scoket.io做的兼容?
The text was updated successfully, but these errors were encountered:
socket.io是一个非常有名的web即时通讯框架,浏览器兼容性做的可以说是最好的,在浏览器不支持websocket时自动转为comet。socket.io需要客户端和服务端配合才能发挥作用。
socket.io服务端是默认是nodejs的,世界上一直没有可用的php版本socket.io服务端,workerman在15年9月份推出了php版本 phpsocket.io,web-msg-sender就是基于phpsocket.io开发的,继承了socket.io原有的超强的浏览器兼容性,同时也具备php的灵活简单的特性。
Sorry, something went wrong.
java 实现一版socket.io服务端
socket.io客户端版本很多,java c/c++ c# js swift objectc等都有,github上搜下就知道了。 选择时需要注意需要支持nodejs.1.3.0以上的才行。phpsocket.io只支持nodejs 1.3.0以上的版本
No branches or pull requests
这个框架对于前端就是引入socket.io.js,两行代码就实现消息推送系统,另外浏览器兼容性如何?长连接推送(websocket或者comet这个主要是scoket.io做的兼容?
The text was updated successfully, but these errors were encountered: