我正在这里https://github.com/node-opcua/node-opcua/blob/v0.4.5/documentation/creating_a_client.md
用于安装node-opcua并创建一个简单的客户端。 所以我做到了:
$ mkdir sample_client
$ cd sample_client
$ npm init
$ npm install node-opcua --save
// $ npm install async --save //错误在这里
但是我在最后一条命令上说了错误: “ 没有适用于异步的有效版本”
如果这是使用第三个命令(npm init)生成的文件:
{
"name": "sample_client",
"version": "1.0.0",
"description": "testing opc ua with Nodejs",
"main": "index.js",
"scripts": {
"test": "tst"
},
"author": "l.Agayev",
"license": "ISC",
"dependencies": {
"node-opcua": "^0.4.5"
}
}
如果需要,我可以显示完整的日志。 预先谢谢你