说说 pubnub
📝
内容提要
pubnub是一个云端即时消息服务,通过它我们可以很方便地创建自己的即时应用。 我们只需在客户端/服务端调用 subscribe 和 publish 方法即可。 // LISTEN FOR MESSAGES PUBNUB.subscribe({ channel: 'hello_world', callback: function (message) { ...
➡️