ironflock 0.1.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/crossbar/index.js +3 -2
- package/package.json +1 -1
- package/src/crossbar/index.ts +3 -2
package/README.md
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## About
|
|
4
4
|
|
|
5
|
-
With this library you can
|
|
5
|
+
With this library you can publish data from your apps on your IoT edge hardware to the fleet data storage of the [IronFlock](https://studio.ironflock.com) devops platform.
|
|
6
6
|
When this library is used on a certain device the library automatically uses the private messaging realm (Unified Name Space)
|
|
7
7
|
of the device's fleet and the data is collected in the respective fleet database.
|
|
8
8
|
|
|
9
9
|
So if you use the library in your app, the data collection will always be private to the app user's fleet.
|
|
10
10
|
|
|
11
|
+
For more information on the IronFlock IoT Devops Platform for engineers and developers visit our [home page](https://www.ironflock.com).
|
|
12
|
+
|
|
11
13
|
## Usage
|
|
12
14
|
|
|
13
15
|
### Install
|
package/dist/crossbar/index.js
CHANGED
|
@@ -58,7 +58,8 @@ exports.CrossbarConnection = void 0;
|
|
|
58
58
|
var autobahn_1 = __importDefault(require("autobahn"));
|
|
59
59
|
var stream_1 = require("stream");
|
|
60
60
|
// import { MsgpackSerializer } from "./serializer";
|
|
61
|
-
var
|
|
61
|
+
var _a = process.env, RESWARM_URL = _a.RESWARM_URL, SWARM_KEY = _a.SWARM_KEY, APP_KEY = _a.APP_KEY, ENV = _a.ENV;
|
|
62
|
+
var CB_REALM = "realm-".concat(SWARM_KEY, "-").concat(APP_KEY, "-").concat(ENV);
|
|
62
63
|
var DATAPODS_WS_URI = "wss://cbw.datapods.io/ws-ua-usr";
|
|
63
64
|
var STUDIO_WS_URI = "wss://cbw.ironflock.com/ws-ua-usr";
|
|
64
65
|
var STUDIO_WS_URI_OLD = "wss://cbw.record-evolution.com/ws-ua-usr";
|
|
@@ -74,7 +75,7 @@ var CrossbarConnection = /** @class */ (function (_super) {
|
|
|
74
75
|
function CrossbarConnection(serial_number) {
|
|
75
76
|
var _this = _super.call(this) || this;
|
|
76
77
|
_this.serial_number = serial_number;
|
|
77
|
-
_this.realm =
|
|
78
|
+
_this.realm = CB_REALM;
|
|
78
79
|
_this.socketURI = RESWARM_URL ? socketURIMap[RESWARM_URL] : DATAPODS_WS_URI;
|
|
79
80
|
_this.init();
|
|
80
81
|
return _this;
|
package/package.json
CHANGED
package/src/crossbar/index.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import autobahn from "autobahn";
|
|
2
2
|
import { EventEmitter } from "stream";
|
|
3
3
|
// import { MsgpackSerializer } from "./serializer";
|
|
4
|
-
const { RESWARM_URL } = process.env
|
|
4
|
+
const { RESWARM_URL, SWARM_KEY, APP_KEY, ENV } = process.env
|
|
5
|
+
const CB_REALM = `realm-${SWARM_KEY}-${APP_KEY}-${ENV}`
|
|
5
6
|
|
|
6
7
|
export type Details = { caller_authid: string; caller_authrole: string };
|
|
7
8
|
|
|
@@ -39,7 +40,7 @@ export class CrossbarConnection extends EventEmitter {
|
|
|
39
40
|
constructor(serial_number: string) {
|
|
40
41
|
super()
|
|
41
42
|
this.serial_number = serial_number;
|
|
42
|
-
this.realm =
|
|
43
|
+
this.realm = CB_REALM;
|
|
43
44
|
this.socketURI = RESWARM_URL ? socketURIMap[RESWARM_URL] : DATAPODS_WS_URI;
|
|
44
45
|
|
|
45
46
|
this.init();
|