0.1.10 • Published 3 years ago

@aronative/nextchat v0.1.10

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

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()