https://github.com/node-opcua/opcua-commander
a opcua client with blessed (ncurses)
https://github.com/node-opcua/opcua-commander
iot opc-ua opcua opcua-client
Last synced: 14 days ago
JSON representation
a opcua client with blessed (ncurses)
- Host: GitHub
- URL: https://github.com/node-opcua/opcua-commander
- Owner: node-opcua
- License: mit
- Created: 2016-03-03T15:24:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-06-11T20:58:18.000Z (4 months ago)
- Last Synced: 2025-09-29T12:36:01.654Z (23 days ago)
- Topics: iot, opc-ua, opcua, opcua-client
- Language: TypeScript
- Homepage:
- Size: 2.47 MB
- Stars: 249
- Watchers: 16
- Forks: 48
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blessed - opcua-commander
README
# CLI OPCUA Client with NodeOPCUA
[](https://snapcraft.io/opcua-commander)
### install from npm
$ npm install opcua-commander -g
$ opcua-commander -e opc.tcp://localhost:26543
### install from source
$ git clone https://github.com/node-opcua/opcua-commander.git
$ cd opcua-commander
$ npm install
$ npm install -g typescript
$ npm run build
$ node dist/index.js -e opc.tcp://localhost:26543
### install on ubuntuif you have EACCES error on linux,
$ npm install -g opcua-commander --unsafe-perm=true --allow-root
$ sudo npm install -g opcua-commander --unsafe-perm=true --allow-root### run with docker
build your docker image
$ docker build . -t commander
Run the docker image$ docker run -it commander -e opc.tcp://localhost:26543