You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 10, 2018. It is now read-only.
code like this :
module.exports = { beforeConnect : function (client) { }, onConnect : function (client, done) { client.emit('sendMsg', { hello: 'world' }); done(); }, sendMessage : function (client, done) { client.emit('sendMsg', { hello: 'world' }); done(); } };when i emit msg in onConnect fun it works, but in sendMessage function it does not work ? why