-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/umati/UA-for-Industrial-Joi…
- Loading branch information
Showing
8 changed files
with
1,114 additions
and
1,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,982 changes: 1,054 additions & 928 deletions
1,982
OPC_UA_Clients/Release1/NodeOPCUA_IJT_Client/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,49 @@ | ||
**Author:** Joakim Gustafsson | ||
# NodeOPCUA_IJTClient | ||
|
||
**Email:** [email protected] | ||
## Author | ||
|
||
This version of the client works with the Release 1 OPC UA Server Simulator available in : **\OPC_UA_Servers\Release1**. | ||
Joakim Gustafsson | ||
Email: [email protected] | ||
|
||
## Coordinator/Maintanence | ||
|
||
Mohit Agarwal | ||
Email: [email protected] | ||
|
||
## NodeOPCUA related | ||
|
||
Etienne Rossignon | ||
Email: [email protected] | ||
|
||
## Overview | ||
|
||
This application uses the open source NodeOPCUA Stack. The purpose of this application is to consume the data from any OPC UA server based on the OPC 40451-1 UA CS for Tightening Systems 1.00. | ||
|
||
This client will be updated based on the newer versions of the companion standards developed by VDMA Industrial Joining Technologies Working Group. | ||
|
||
## Pre-requisites | ||
|
||
1. Fork or clone the repository | ||
2. Go to OPCUA_Clients\NodeOPCUA_IJT_Client folder | ||
3. Run `npm install` | ||
|
||
## How to run? | ||
|
||
1. Run the following command: `node index.js` | ||
2. The above command will start the socket.io server at `http://localhost:3000` | ||
3. Open the `http://localhost:3000` in the browser and start using the client. | ||
|
||
## OPC UA Server | ||
|
||
1. Use the following OPC UA Server to utilize the OPC UA Client: <https://github.com/umati/UA-for-Industrial-Joining-Technologies> | ||
2. Select Servers -> Local in the OPC UA Client to connect to the local OPC UA Server. | ||
|
||
## Tips | ||
|
||
* To update existing node-opcua modules, run the following commands: | ||
|
||
```bash | ||
npx npm-check-updates -u -f 'node-opcua*' | ||
npm install | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dependencies": { | ||
"node-opcua": "2.91.1", | ||
"node-opcua-nodeset-ijt": "2.91.0" | ||
"node-opcua": "2.120.0", | ||
"node-opcua-nodeset-ijt": "2.120.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters