xively-kinesis-bridge

This is a NodeJS client library written in TypeScript for the Xively Kinesis Bridge feature. It helps parsing the envelope transported on the Xively-connected Amazon Kinesis stream.

Usage no npm install needed!

<script type="module">
  import xivelyKinesisBridge from 'https://cdn.skypack.dev/xively-kinesis-bridge';
</script>

README

xively-kinesis-bridge

This is a NodeJS client library written in TypeScript for the Xively Kinesis Bridge feature. It helps parsing the envelope transported on the Xively-connected Amazon Kinesis stream.

Status

Build Status

Quickstart

npm install xively-kinesis-bridge

Sample

import {KinesisBridgeEnvelopeParser} from 'xively-kinesis-bridge';

const base64Data = 'some base64 encoded string';
const parser = new KinesisBridgeEnvelopeParser();

const kinesisBridgeEnvelope : KinesisBridgeEnvelope = parser.parseData(base64Data);