smartsupp-websocket
v1.2.2
Published
Official Smartsupp websocket SDK
Downloads
80
Readme
Official Smartsupp websocket SDK for JavaScript
Installation
npm install --save smartsupp-websocket
yarn add smartsupp-websocket
- We use socket.io as websocket engine.
- Documentation can be found on the Gihub Pages.
Usage
Create and initialize websocket client and connect to the server.
import { createVisitorClient } from 'smartsupp-websocket'
const client = createVisitorClient({
data: {
id: null, // null or id returned from server
key: '__SMARTSUPP_ACCOUNT_KEY__',
// ...
},
})
// connect to server
client.connect().then((data) => {
console.log(data)
})
// received events
client.on('chat.message_received', (message) => {
console.log(message)
})
Custom Promise Library
Customize promise library:
import * as smartsuppWebsocket from 'smartsupp-websocket'
smartsuppWebsocket.setPromiseLibrary(Promise)
Development
VuePress docs hot reload workaround:
npx npm-force-resolutions
npm install