centos7 NodeJs安装问题:Error: Cannot find module '../lib/utils/unsupported.js'

报错:

nodejs : Error: Cannot find module '../lib/utils/unsupported.js'

解决办法(centos7):
去安装目录下,删掉npm并重新创建npm链接。没必要重新安装,就算重新安装可能也解决不了

去node目录下:/node***(你的版本)/bin
shell> rm npm
shell> ln -s ../lib/node_modules/npm/bin/npm-cli.js ./npm

参考链接:
https://stackoverflow.com/questions/44363066/error-cannot-find-module-lib-utils-unsupported-js-while-using-ionic

原文地址:https://www.cnblogs.com/lisicn/p/14097775.html