node-opcua-samples 2.122.0 → 2.124.0
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/bin/simple_server.js +3 -3
- package/package.json +9 -9
package/bin/simple_server.js
CHANGED
|
@@ -237,10 +237,10 @@ const paths = envPaths(productUri);
|
|
|
237
237
|
|
|
238
238
|
await server.initialize();
|
|
239
239
|
|
|
240
|
-
function post_initialize() {
|
|
240
|
+
async function post_initialize() {
|
|
241
241
|
const addressSpace = server.engine.addressSpace;
|
|
242
242
|
|
|
243
|
-
build_address_space_for_conformance_testing(addressSpace);
|
|
243
|
+
await build_address_space_for_conformance_testing(addressSpace);
|
|
244
244
|
|
|
245
245
|
install_optional_cpu_and_memory_usage_node(server);
|
|
246
246
|
|
|
@@ -444,7 +444,7 @@ const paths = envPaths(productUri);
|
|
|
444
444
|
});
|
|
445
445
|
}
|
|
446
446
|
|
|
447
|
-
post_initialize();
|
|
447
|
+
await post_initialize();
|
|
448
448
|
|
|
449
449
|
function dumpObject(node) {
|
|
450
450
|
function w(str, width) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-samples",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.124.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module samples",
|
|
5
5
|
"bin": {
|
|
6
6
|
"simple_client": "./dist/simple_client_ts.js",
|
|
@@ -24,18 +24,18 @@
|
|
|
24
24
|
"easy-table": "^1.2.0",
|
|
25
25
|
"env-paths": "2.2.1",
|
|
26
26
|
"exit": "^0.1.2",
|
|
27
|
-
"node-opcua": "2.
|
|
28
|
-
"node-opcua-address-space": "2.
|
|
29
|
-
"node-opcua-address-space-for-conformance-testing": "2.
|
|
27
|
+
"node-opcua": "2.124.0",
|
|
28
|
+
"node-opcua-address-space": "2.124.0",
|
|
29
|
+
"node-opcua-address-space-for-conformance-testing": "2.124.0",
|
|
30
30
|
"node-opcua-assert": "2.120.0",
|
|
31
|
-
"node-opcua-client-crawler": "2.
|
|
32
|
-
"node-opcua-client-proxy": "2.
|
|
31
|
+
"node-opcua-client-crawler": "2.124.0",
|
|
32
|
+
"node-opcua-client-proxy": "2.124.0",
|
|
33
33
|
"node-opcua-crypto": "4.8.0",
|
|
34
34
|
"node-opcua-packet-analyzer": "2.121.0",
|
|
35
35
|
"node-opcua-pki": "4.10.0",
|
|
36
|
-
"node-opcua-server-configuration": "2.
|
|
36
|
+
"node-opcua-server-configuration": "2.124.0",
|
|
37
37
|
"node-opcua-utils": "2.120.0",
|
|
38
|
-
"node-opcua-vendor-diagnostic": "2.
|
|
38
|
+
"node-opcua-vendor-diagnostic": "2.124.0",
|
|
39
39
|
"sprintf-js": "^1.1.3",
|
|
40
40
|
"treeify": "^1.1.0",
|
|
41
41
|
"underscore": "^1.13.6",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"internet of things"
|
|
57
57
|
],
|
|
58
58
|
"homepage": "http://node-opcua.github.io/",
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "75b5e34e797094a83833ea2d7c72ca3e5983d648",
|
|
60
60
|
"files": [
|
|
61
61
|
"dist"
|
|
62
62
|
]
|