Consumer for decoding sensor device uplinks and forwarding them to the tsdb consumer
Consumer for decoding sensor device uplinks and forwarding them to the tsdb consumer
Start development version:
```
npm run dev
Install dependencies:
``
npm ci
Add a pacakge:
``
npm install --save
Add a dev pacakge (types, stuff for testing only, etc):
``
npm install --save-dev
Publish to npm:
This is handled automatically in the bitbucket pipeline once a tag is made from a release. The tag name is used as version number in that case. So only do this if you want to manually publish a version.
Replace patch with whatever you want to increase: major | minor | patch. Or specify the version number directly.
``
npm version patch
npm publish
Run tests:
``
npm run test
Run linter:
``
npm run lint
Build the package:
```
npm run build