├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── example_config └── config.json ├── index.js ├── package.json └── src ├── index.js ├── influxdb.js ├── opcua.js └── schema └── config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "standard.autoFixOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/README.md -------------------------------------------------------------------------------- /example_config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/example_config/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/src/index.js -------------------------------------------------------------------------------- /src/influxdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/src/influxdb.js -------------------------------------------------------------------------------- /src/opcua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/src/opcua.js -------------------------------------------------------------------------------- /src/schema/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/factrylabs/influx-opcua-server/HEAD/src/schema/config.json --------------------------------------------------------------------------------