【npm】常见错误

1.安装模块错误

错误内容

npm ERR! code EPERM

npm ERR! syscall mkdir

npm ERR! path E:\Program Files\nodejs\node_modules\live-server

npm ERR! errno -4048

npm ERR! Error: EPERM: operation not permitted, mkdir 'E:\Program Files\nodejs\node_modules\live-server'

npm ERR! [Error: EPERM: operation not permitted, mkdir 'E:\Program Files\nodejs\node_modules\live-server'] {

npm ERR! errno: -4048,

npm ERR! code: 'EPERM',

npm ERR! syscall: 'mkdir',

npm ERR! path: 'E:\\Program Files\\nodejs\\node_modules\\live-server'

npm ERR! }

npm ERR!

npm ERR! The operation was rejected by your operating system.

npm ERR! It's possible that the file was already in use (by a text editor or antivirus),

npm ERR! or that you lack permissions to access it.

npm ERR!

npm ERR! If you believe this might be a permissions issue, please double-check the

npm ERR! permissions of the file and its containing directories, or try running

npm ERR! the command again as root/Administrator.

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\root\AppData\Local\npm-cache\_logs\2022-02-28T03_08_09_983Z-debug.log

解决方法

npm安装模块的时候需要使用管理员权限

安装vite时候操作失败

npm ERR! code ETIMEDOUT

npm ERR! syscall connect

npm ERR! errno ETIMEDOUT

npm ERR! network request to https://registry.npmjs.org/create-vite failed, reason: connect ETIMEDOUT 104.16.20.35:443

npm ERR! network This is a problem related to network connectivity.

npm ERR! network In most cases you are behind a proxy or have bad network settings.

npm ERR! network

npm ERR! network If you are behind a proxy, please make sure that the

npm ERR! network 'proxy' config is set properly. See: 'npm help config'

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\root\AppData\Local\npm-cache\_logs\2022-11-17T09_32_07_433Z-debug-0.log

解决方法

清理代理

npm config set proxy null

清理缓存

npm cache clean --force

重新设置国内淘宝镜像

npm config set registry https://registry.npm.taobao.org

安装n错误

npm ERR! code EBADPLATFORM

npm ERR! notsup Unsupported platform for n@9.0.1: wanted {"os":"!win32"} (current: {"os":"win32","arch":"x64"})

npm ERR! notsup Valid OS: !win32

npm ERR! notsup Valid Arch: undefined

npm ERR! notsup Actual OS: win32

npm ERR! notsup Actual Arch: x64

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\root\AppData\Local\npm-cache\_logs\2022-11-17T10_02_01_299Z-debug-0.log

解决方法

npm install --force

相关推荐
GISer_Jing1 小时前
今天看了京东零售JDS的保温直播,秋招,好像真的结束了,接下来就是论文+工作了!!!加油干论文,学&分享技术
前端·零售
Mapmost1 小时前
【高斯泼溅】如何将“歪头”的3DGS模型精准“钉”在地图上,杜绝后续误差?
前端
废春啊2 小时前
前端工程化
运维·服务器·前端
爱上妖精的尾巴2 小时前
6-9 WPS JS宏Map、 set、get、delete、clear()映射的添加、修改、删除
前端·wps·js宏·jsa
爱分享的鱼鱼2 小时前
对比理解 Vue 响应式 API:data(), ref、reactive、computed 与 watch 详解
前端·vue.js
JS_GGbond2 小时前
【性能优化】给Vue应用“瘦身”:让你的网页快如闪电的烹饪秘籍
前端·vue.js
T___T2 小时前
一个定时器,理清 JavaScript 里的 this
前端·javascript·面试
代码小学僧2 小时前
从 Arco Table 迁移到 VTable:VTable使用经验分享
前端·react.js·开源
微笑的曙光2 小时前
Vue3 环境搭建 5 步走(零基础友好)
前端
不知名用户来了2 小时前
基于vue3 封装的antdv/element-Plus 快速生成增删改查页面
前端