Skip to content

gijoehosaphat/react-native-realtime-pusher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-realtime-pusher

Implementing the Pusher Realtime API for Android and iOS.

Installation Android

yarn add react-native-realtime-pusher

In settings.gradle add the following lines:

include ':Pusher'
project(':Pusher').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-realtime-pusher/android')

In build.gradle add the following line:

compile project(':Pusher')

In MainApplication.java add the following lines:

import com.gijoehosaphat.pusher.PusherPackage;
new PusherPackage()

Example usage:

import Pusher from 'react-native-realtime-pusher'
...
// These values determined by *your* setup on *your* backend.
// hostname ~= http://myserver.com
// authPath ~= /auth
// channelPath ~= /channel
Pusher.initialize(hostname, authPath, channelPath, appKey, cluster, token) //This is a Promise
...
//Connect (There is also disconnect)
Pusher.connect() //This is a Promise
...
//Subscribe to a channel (There is also channelUnsubscribe)
Pusher.channelSubscribe(channel, channelEventName) //This is a Promise
...
//Send a message
Pusher.messagePost(messageObject, channelName, channelEvent) //This is a promise
...
//You will want to listen for events:
componentDidMount() {
  DeviceEventEmitter.addListener('pusher-event', this.yourEventHandler)
}
componentWillUnmount() {
  DeviceEventEmitter.removeAllListeners('pusher-event')
}

About

A Pusher module for React Native

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published