├── .github └── workflows │ ├── codeql-analysis.yml │ └── ossar-analysis.yml ├── .gitignore ├── .prettierrc ├── README.md ├── deprected_simple_client.js ├── package.json ├── simple_client_es8.js ├── simple_client_ts.ts └── tsconfig.json /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/ossar-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/.github/workflows/ossar-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | temp 4 | tmp 5 | *.swp 6 | dist/ 7 | 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/README.md -------------------------------------------------------------------------------- /deprected_simple_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/deprected_simple_client.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/package.json -------------------------------------------------------------------------------- /simple_client_es8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/simple_client_es8.js -------------------------------------------------------------------------------- /simple_client_ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/simple_client_ts.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-opcua/node-opcua-sample/HEAD/tsconfig.json --------------------------------------------------------------------------------