说说 pubnub

limboy's HQ at 
pubnub 是一个云端即时消息服务,通过它我们可以很方便地创建自己的即时应用。我们只需在客户端/服务端调用 subscribe 和 publish 方法即可。// LISTEN FOR MESSAGESPUBNUB.subscribe({ channel: 'hello_world', callback: function (message) { log(message); },});// SEND MESSAGEPUBNUB.publish({ channel: 'hello_world', message: 'hi',});pubnub 有以下几大特点多语言,跨平台 pu……