npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

roam-js

v0.0.5

Published

Roam Javascript SDK to listen to location updates.

Downloads

178

Readme

npm version Npm Publish

Official Roam Javascript SDK

A Javascript library for Roam Location and Events Subscription. It is used to subscribe to user's locations and events at project level or location of a single user.

roam-js supports subscription to the following location and events data:

  • Specific user
  • All users of a group
  • All users of project

Note: Before you get started signup to our dashboard to get your Publishable Keys.

Installation:

Via NPM

You can install our package using npm.

npm install roam-js

Via CDN

roam-js bundle is available through http://unpkg.com, specifically at https://unpkg.com/roam-js/dist/roam.min.js. See http://unpkg.com for the full documentation on version ranges.

Usage

You can think this library as a wrapper around our REST API which needs your Publishable Key for authorization and it works as per project level. It is fairly simple to use:

  • Initialize() the package with the publishable key. This will return an instance of our client.
  • Define your custom callback function. client.setCallback(fn)
  • Create an instance of subscription. You can create subscription for project, user or group of users using the following methods on client:
    • Location Subscriptions:
      • projectSubscription() takes no parameters
      • groupSubscription(greoupID) - takes in group ID as parameter
      • userSubscription(userID) - takes in a single user ID or a array of user ids as parameter
    • Events Subscription:
      • projectEventsSubscription() takes no parameters
      • groupEventsSubscription(greoupID) - takes in group ID as parameter
      • userEventsSubscription(userID) - takes in a single user ID or a array of user ids as parameter
  • Use subscribe() method on the created subscription to start receiving realtime location data
  • To stop receiving data, call unsubscribe method.
  • To disconnect() call disconnect method on client. Please find the example usage below:
var roam = require("roam-js")

const pk = process.env.roam_pk;

roam.Initialize(pk)
    .then((client)=>{
        client.setCallback(function(message, messageType, userID){console.log(message, messageType, userID)})
        
        client.projectSubscription()
        .then((subscription)=>{
            subscription.subscribe()
            .then((msg)=>{
                console.log(msg)
                subscription.unsubscribe()
                .then((msg)=>{
                    console.log(msg)
                    client.disconnect().then((msg)=>{
                        console.log(msg)
                    })
                })
                .catch((err)=>{
                   console.log(err)
                })
            }
            )
        })
        .catch((err)=>{
           console.log(err)
        })
        
})
.catch((err)=>{
    console.log(err)
})

Methods

Initialize

First order of process is initialization of the library. Initialize function takes in publishable key as parameter. You can get the publishable key from our dashboard once you have created a project. Initialize returns a promise of our client.

client = await roam.Initialize("<Your publishable key>")

Setting up callback function

Once initialized, we recommend setting up a callback function. This callback function will be called once you receive any data from our backend. We provide 3 parameters for callback function in the following order

  1. message : Actual message sent from the server
  2. messageType: locations or events message type
  3. userID: the userID to which the location or event belongs.
var callback = function(message, messageType, userID){
    console.log(message, messageType, userID)
}
client.setCallback(callback)

Subscription

roam-js supports 3 types of subscriptions:

  • project subscription
  • user subscription
  • group subscription
  • project events subscription
  • user events subscription
  • group events subscription

Project Subscription

To create a subscription that allow you to subscribe to location data of all users within the project, you can use projectSubscription() method of client. It does not take in any parameter.

subscription = await client.projectSubscription()

Group Subscription

To create a subscription that allow you to subscribe to location data of all users within the group, you can use groupSubscription(groupID) method of client. It takes group ID as parameter.

subscription = await client.groupSubscription('<Enter group id>')

User Subscription

To create a subscription that allow you to subscribe to location data a user or multiple usesrs, you can use userSubscription(user_1) method of client. It takes user ID as parameter.

subscription = await client.userSubscription('user_1')

To subscribe to multiple users pass in user ids in an array as parameter

subscription = await client.userSubscription(['user_1','user_2'])

Project Events Subscription

To create a subscription that allow you to subscribe to location data of all users within the project, you can use projectEventsSubscription() method of client. It does not take in any parameter.

subscription = await client.projectEventsSubscription()

Group Events Subscription

To create a subscription that allow you to subscribe to location data of all users within the group, you can use groupEventsSubscription(groupID) method of client. It takes group ID as parameter.

subscription = await client.groupEventsSubscription('<Enter group id>')

User Events Subscription

To create a subscription that allow you to subscribe to location data a user or multiple usesrs, you can use userEventsSubscription(groupID) method of client. It takes user ID as parameter.

subscription = await client.userEventsSubscription('user_1')

To subscribe to multiple users pass in user ids in an array as parameter

subscription = await client.userEventsSubscription(['user_1','user_2'])

Subscribe to a subscription

All of the above methods will give you an subscription promise. You can subscribe to the subscription by using the following:

subscription.subscribe()

This will return a promise with a message whether subscription was subscribed successfully or throws an error.

Unsubscribe from a subscription

To stop getting location updates from a subscription you can use ubsubscribe method.

subscription.unsubscribe()

This will return a promise with a message whether unsubscribe was subscribed successfully or throws an error.

Disconnect

To disconnect from our server, call disconnect method on the client.

client.disconnect()

Example

See example codes in examples/. To run the example, clone this repository, add your sdk key as environment veriable pk and run the app.

Need Help?

If you have any problems or issues over our SDK, feel free to create a github issue or submit a request on Roam Help.