Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 18 hours 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-17T13:10:33.000Z (about 1 year ago)
- Last Synced: 2024-04-14T06:49:37.532Z (9 months ago)
- Topics: iot, opc-ua, opcua, opcua-client
- Language: TypeScript
- Homepage:
- Size: 3.11 MB
- Stars: 189
- Watchers: 15
- Forks: 44
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blessed - opcua-commander
README
# CLI OPCUA Client with NodeOPCUA
![alt text](
https://raw.githubusercontent.com/node-opcua/opcua-commander/master/docs/demo.gif "...")[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](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