I've recently upgraded Nodejs from 0.13 to 6.9 and I started getting some errors when running my nodejs app, I googled around, managed to fix some errors and new ones appeared, I ended up deleting the node_modules
folder of my app, clearing npm's cache and running the npm install again and this is where I am stuck, you can see the full output in this pastebin.
More details:
- Ubuntu 12.04
- Nodejs v6.9.1 (both
node --version
andnodejs --version
return the same) - node-gyp, clang, gcc, make and build-essential are all installed
Node modules my app uses:
"dependencies": {
"socket.io": "~1.2.1",
"kurento-client": "Kurento/kurento-client-js",
"mongoose": "~3.8.23",
"dateformat": "~1.0.11",
"underscore": "~1.8.3"
}
I've been trying the solutions from here to no avail.
How can I fix this?