@clearblade/asset-monitor
v3.9.2
Published
Asset Monitor Biolerplate
Downloads
63
Readme
Overview
This npm module is a boilerplate for Asset Monitoring Solution when developing solutions on ClearBlade Platform. This package has been designed to abstract the internal working of the Asset Monitoring Solution. An API is exposed to the Solutions Developer to add the custom logic for it, described in the later sections.
Version 1.0.0 supports just the normlizer.
Setup your System to develop locally
Developer can perform the following steps to set up his existing/new system to work locally:
Export the System
Go to your terminal and perform the following steps:
cd <parent_folder>
into the desired parent foldercb-cli export -email=<DEVELOPER_EMAIL> -url=<PLATFORM_URL> -messaging-url=<MESSAGING_URL> -system-key=<SYSTEM_KEY>
, enter the developer password when promptedcd
into the newly created folder
Development Setup
npm init -y
npm i --save @clearblade/cb-dev-kit @clearblade/asset-monitor
Working with the Normalizer
The Normalizer library is designed to work with the Stream Service and Micro Service. Discussed below are the two approaches on how to leverage the Normalizer library for both the scenarios.
Assumption: the developer is familiar with using the command line tool for importing/exporting ClearBlade Assets: [`cb-cli`](https://github.com/ClearBlade/cb-cli) & the ClearBlade Development Kit a.k.a. [`cb-dev-kit`](https://github.com/ClearBlade/cb-dev-kit).
Stream Service Using the Normalizer
Steps to create your own Normlizer Stream Service to ingest data from a certain device & publish on relevant topics.
- Create a Stream Service from the ClearBlade console.
- Perform a
cb-cli pull -service=<SERVICE_NAME>
- Perform
npx cb-dev-kit generate
& then follow the prompts to generate the.ts
file for the service, which is created in thesrc/code/services/<SERVICE_NAME>
folder. - Use the sample code and update based on your use-case.
How to update the Repo
Make changes to the src/ folder and then run npm run build
. Update package version accordingly. Commit and Push.
How to push a new NPM version
- Commit your changes to src
- Create a new npm version -
npm version [-—no-commit-hooks] <major|minor|patch>
- Publish the new version to npm -
npm publish
- Commit the changes from the build and push to master