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

@clearblade/one-way-sync

v1.1.9

Published

[![Build Status](https://travis-ci.com/ClearBlade/one-way-sync.svg?branch=master)](https://travis-ci.com/ClearBlade/one-way-sync)

Downloads

18

Readme

Build Status

Overview

This repository provides modules for assisting in one-way sync from ClearBlade edge to ClearBlade platform. This approach is useful if you have a single ClearBlade collection used to store sensor or device data from multiple edges. This library will track the connected/disconnected status of the edge to the platform, and while connected will forward any MQTT messages received on the provided topics to the platform via message relay. If the edge is disconnected for any reason, incoming MQTT messages will be stored in a collection. As soon as the edge is reconnected, all messages in the collection will be forwarded to the platform.

From there, you will simply need to create a stream service on your platform in order to do any needed processing and storing of these messages.

Installation

npm i --save @clearblade/one-way-sync

Prerequisites

This package must be configured with the following assets:

  • The ClearBlade library must be imported as a dependency of each code service.
  • A shared cache must be created in order to allow for checking if an edge is connected or disconnected from the platform. The default name is edgeDataSharedCache but the name can be configured with the cacheName parameter. A TTL of 1 hour is recommended.
  • A collection must be created in order to store a queue of messages if an edge is disconnected from the platform. The default name is edge_relay_cache but the name can be configured with the cacheName parameter. This collection will require the below columns:

Column Name | Type --- | --- topic | string payload | string timestamp | timestamp

  • Two triggers must be created in order to toggle the edge connected/disconnected variable in the shared cache.

Usage

The modules within this package must be imported into and configured from a code service.

Edge Message Relay

import relay from "@clearblade/one-way-sync/edge/edge-message-relay";

function edgeMessageRelay(req: CbServer.BasicReq, resp: CbServer.Resp) {
  relay({
    req: req,
    resp: resp,
    topics: ['one', 'two'],
    cacheName: 'edgeDataSharedCache', // optional cache name
    collectionName: 'edge_relay_cache' // optional collection name
  });
}

// @ts-ignore
global.edgeMessageRelay = edgeMessageRelay;

Edge Connected Service

import onConnect from "@clearblade/one-way-sync/edge/edge-disconnected";

function edgeConnected(req: CbServer.BasicReq, resp: CbServer.Resp) {
  onConnect({
    req: req,
    resp: resp,
    cacheName: 'edgeDataSharedCache', // optional cache name
    collectionName: 'edge_relay_cache' // optional collection name
  });
}

//@ts-ignore
global.edgeConnected = edgeConnected;

Edge Disconnected Service

import onDisconnect from "@clearblade/one-way-sync/edge/edge-disconnected";

function edgeDisconnected(req: CbServer.BasicReq, resp: CbServer.Resp) {
  onDisconnect({
    req: req,
    resp: resp,
    cacheName: 'edgeDataSharedCache', // optional cache name
    collectionName: 'edge_relay_cache' // optional collection name
  });
}

//@ts-ignore
global.edgeDisconnected = edgeDisconnected;

TODO

  1. add one-way sync from platform to edge