├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── eslint.config.mjs ├── package.json └── server.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/package.json -------------------------------------------------------------------------------- /server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sampleserver/HEAD/server.mjs --------------------------------------------------------------------------------