I am new to Node Webkit, so I might not entirely understand how NodeJS and Node Webkit is connected.
I am trying to get the serialport plugin work in Node Webkit. I get this error when trying to require("serialport");:
serialport.node'
was compiled against a different Node.js version using
NODE_MODULE_VERSION 48. This version of Node.js requires
NODE_MODULE_VERSION 57. Please try re-compiling or re-installing
the module...
I've tried recompiling and all that - doesn't work. So I would rather just downgrade to a node version that fits. Problem is that if I type node -v in my terminal I get v6.10.1, which according to this should be NODE_MODULE_VERSION 48.
So I am confused when the error tells me that it is using 57. Does Node Webkit use another NodeJS version than the one installed on my computer?