0.1.10 • Published 5 years ago
@aronative/nextchat v0.1.10
NexChat Pusher Library
Installation
package manager
npm install next-pusheror 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
5 years ago
0.1.9
5 years ago
0.1.8-3
5 years ago
0.1.8-2
5 years ago
0.1.8-1
5 years ago
0.1.8
5 years ago
0.1.7
5 years ago
0.1.7-0
5 years ago
0.1.6
5 years ago
0.1.5-9
5 years ago
0.1.5-8
5 years ago
0.1.5-7
5 years ago
0.1.5-6
5 years ago
0.1.5-5
5 years ago
0.1.5-4
5 years ago
0.1.5-3
5 years ago
0.1.5-2
5 years ago
0.1.5-1
5 years ago
0.1.5
5 years ago
0.1.4
5 years ago
0.1.3
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago