0.1.10 • Published 4 years ago
@aronative/nextchat v0.1.10
NexChat Pusher Library
Installation
package manager
npm install next-pusher
or include in html
<script src="https://nexchat.ir/apps/NextPusher.umd.min.js?token=$API_KEY"></script>
Usage
Connect to websocket server
Provide <API_KEY> only if api key is not provided in include script tag.
const nextPusher = new NextPusher(/*<API_KEY: Optional>*/)
nextPusher.connect()
Connect to public broadcast channel for everyone
nextPusher.listenBroadcast(res => {
console.log('message > ' + res.message)
})
Connect ro private broadcast channel for all users
nextPusher.listenWhisper(res => {
console.log('message > ' + res.message)
})
Connect to Public room with identification id
Replace ROOM_ID with your room id
nextPusher.listenRoom(ROOM_ID, res => {
console.log('message > ' + res.message)
})
Private channel with identification id
Replace CHANNEL_ID with your channel id
nextPusher.listenChannel(CHANNEL_ID, res => {
console.log('message > ' + res.message)
})
Disconnect from Server
nextPusher.disconnect()
0.1.10
4 years ago
0.1.9
4 years ago
0.1.8-3
4 years ago
0.1.8-2
4 years ago
0.1.8-1
4 years ago
0.1.8
4 years ago
0.1.7
4 years ago
0.1.7-0
4 years ago
0.1.6
4 years ago
0.1.5-9
4 years ago
0.1.5-8
4 years ago
0.1.5-7
4 years ago
0.1.5-6
4 years ago
0.1.5-5
4 years ago
0.1.5-4
4 years ago
0.1.5-3
4 years ago
0.1.5-2
4 years ago
0.1.5-1
4 years ago
0.1.5
4 years ago
0.1.4
4 years ago
0.1.3
4 years ago
0.1.2
4 years ago
0.1.1
4 years ago