[NPM] 问题收集/解决

1、npm install出现"Unexpected end of JSON input while parsing near"
重新cnpm install后出现报错This is probably not a problem with npm. There is likely additional logging output above
rm -rf node_modules
rm package-lock.json
npm cache clear --force
npm install
如果是使用yarn,可以使用yarn相关命令如yarn cache clean等。
npm cache clean --force
即可解决pm install出现”Unexpected end of JSON input while parsing near”错误。
2、npm rebuild node-sass出错
 npm ERR! gyp ERR! stack Error: Could not find any Visual Studio installation to use
解决:npm config set msvs_version 2019
如果不行,或者:npm install --global --production windows-build-tools
3、cygpath: command not found husky > commit-msg
在项目目录找到`.git`文件夹,进入`hooks`,找到对应`commit-msg`文件删掉,重新push就可以了。
对应其他的hook报错可以以同样的方式解决

你可能感兴趣的:([NPM] 问题收集/解决)