欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

vue踩坑记-在项目中安装依赖模块npm install报错

时间:2021-02-08 09:33:07|栏目:vue|点击:

在维护别人的项目的时候,在项目文件夹中安装npm install模块的时候,报错如下:

npm ERR! path D:\ShopApp\node_modules\fsevents\node_modules\abbrev
npm ERR! code ENOENT
npm ERR! errno -4058
npm ERR! syscall access
npm ERR! enoent ENOENT: no such file or directory, access 'D:\ShopApp\node_modules\fsevents\node_modules\abbrev'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
 
npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Program Files\nodejs\node_cache\_logs\2018-08-01T02_35_44_300Z-debug.log

解决办法:

将no such file or directory,access中指明的文件路径中的node_modules删除:
rm -r node_modules或者直接在在项目文件夹中删除

然后再重新npm install 安装

重新npm install 安装结果如下:

这个时候就可以启动项目,打开运行项目了

上一篇:vue+koa2实现session、token登陆状态验证的示例

栏    目:vue

下一篇:elementUI Tree 树形控件的官方使用文档

本文标题:vue踩坑记-在项目中安装依赖模块npm install报错

本文地址:http://www.codeinn.net/misctech/59306.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有