Real time data push using PUB NUB in JavaScript

Table of contents
Reading Time: 2 minutes

We are going to see how to use PUB NUB when you want to push data in real time.

Pub Nub help us to attain our objective in easy and effective way.

We need the API’s keys and you will get it by signing in the PUB NUB account.

There will be two keys : publish_key and subscribe_key .

The publish_key allows us to send our data to a channel while to receive the data from a channel subscribe_key is required.

As we will be using both the publish and subscribe API’s we need both the key.

After we get the keys it’s time to add them to our application.

We can add the key either through JavaScript or directly in HTML page.

Addition through JavaScript.

Adding directly to your HTML page.

Once both keys are added we call the it’s the time to add JavaScript SDK to our application.

Adding the above code adds the JavaScript API in our application.

Now we are ready to send and receive the data through PUB NUB in real time.

PUB NUB provides us simple API’s.

For sending the message or data we are given the publish API while subscribe API is there for receiving the message.

The publish API sends data through a unique channel and once the data is sent it is received by the subscribe API that is subscribed to the channel through which publish API have sent the data.

Add the publish API to send a message through a channel.

Once the message is send to a channel we need a subscribe API to receive the message.

The below code will do the work.

And we are done. Now when ever a message is published through the channel Demo it will be available at subscriber end in real time.

 

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading