chat-engine-online-user-search
v0.0.11
Published
Adds the ability to search for currently online users on a ChatEngine Chat
Downloads
10
Maintainers
Keywords
Readme
Online User Search Plugin for ChatEngine
Adds the ability to search for currently online users on a ChatEngine Chat
Quick Start
- Have a ChatEngine server running already, instantiate a client and connect it
const ChatEngine = ChatEngineCore.create({
publishKey: 'pub-key-here',
subscribeKey: 'sub-key-here'
};
ChatEngine.connect('Username');
ChatEngine.on('$ready', () = { ... });
- Attach this plugin to the channel you want, in this case global
ChatEngine.global.plugin(ChatEngineCore.plugin['chat-engine-online-user-search']());
- Query the channel for a search term
// returns all users with uuid's containing 'foo'
ChatEngine.global.onlineUserSearch.search('foo');
Support
- If you need help, have a general question a feature request or to file a bug, contact [email protected]