stream
stream copied to clipboard
compatibility Node version 12.14.0
it's not compatible with the lastest version of nodejs 12.14.0 (npm V6.13.4 )
Do you have a log where you found incompatibility?
I have this issue trying to install:
3746 verbose stack Error: [email protected] install: prebuild-install || node-gyp rebuild
3746 verbose stack Exit status 1
3746 verbose stack at EventEmitter.prebuild-install || node-gyp rebuild
3755 error Exit status 1
3756 error Failed at the [email protected] install script.
3756 error This is probably not a problem with npm. There is likely additional logging output above.
3757 verbose exit [ 1, true ]
I confirm this for the same version of the nodeJs. [email protected] is the problem. Installing the [email protected] and manual install of the package is an workaround I've found. I am also using the TCP and I can't confirm that the serial connection is working.
I confirm this for the same version of the nodeJs. [email protected] is the problem Confirmed that this is still a problem for node v12.16
I've the same problem. I already install [email protected], but until error to install modbus-stream.
NODE 12.18.0 NPM 6.13.7
Same here. @bcatalin . Could you explain how you managed to install this package manually, please?
Could you explain how you managed to install this package manually, please?
You can do it with yarn's selective dependency resolutions like this (in package.json):
{
// ... dependencies and all that ...
"resolutions": {
"**/serialport": "^9.0.1"
}
}