大家好,又见面了,我是你们的朋友全栈君。
命令提示窗口: npm root -g
查看全局安装的包,找到路径配置到环境变量中 默认: C:UsersmzAppDataRoamingnpmnode_modules
NODE_PATH
修改 npm 全局包路径
代码语言:javascript复制//指定npm 全局安装包的存放路径
npm config set prefix "D:devnodejsnode_modulesnpmnode_global_modules"
//指定npm 下包缓存路径
npm config set cache "D:devnodejsnode_modulesnpmnode_cache"
1、npm install出现”Unexpected end of JSON input while parsing near”错误解决方法
运行
代码语言:javascript复制npm cache clean --force
即可解决pm install出现”Unexpected end of JSON input while parsing near”错误。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/136287.html原文链接:https://javaforall.cn