npm 运行 serve 在丢失时抛出错误 FilterService.js
npm run serve throwing errors over missing FilterService.js
我正在与 Vue.js 合作一个项目。
我已经安装了好几次 npm,但它一直告诉我有几个文件没有包含在 node_module 文件夹中。
这是我在尝试 npm run serve
:
时遇到的错误
error in ./node_modules/primevue/api/FilterService.js
Syntax Error: no such file or directory, open 'C:\Users\guill\OneDrive\Escritorio\siis_frontend\node_modules\primevue\api\FilterService.js'
error in ./node_modules/core-js/modules/es.regexp.dot-all.js
Syntax Error: no such file or directory, open 'C:\Users\guill\OneDrive\Escritorio\siis_frontend\node_modules\core-js\modules\es.regexp.dot-all.js'
我应该提到的是我的一个合作伙伴没有这些文件夹或文件。但是他运行项目正常没有问题。
我可以做些什么来解决这个问题吗?
让我们从一些基本的故障排除步骤开始。
- 删除您的 node_modules-文件夹
- 删除包-lock.json-文件
- 导航到包含 package.json-文件
的文件夹
- 运行 npm 安装
如果这能解决您的问题,请告诉我。
我正在与 Vue.js 合作一个项目。
我已经安装了好几次 npm,但它一直告诉我有几个文件没有包含在 node_module 文件夹中。
这是我在尝试 npm run serve
:
error in ./node_modules/primevue/api/FilterService.js
Syntax Error: no such file or directory, open 'C:\Users\guill\OneDrive\Escritorio\siis_frontend\node_modules\primevue\api\FilterService.js'
error in ./node_modules/core-js/modules/es.regexp.dot-all.js
Syntax Error: no such file or directory, open 'C:\Users\guill\OneDrive\Escritorio\siis_frontend\node_modules\core-js\modules\es.regexp.dot-all.js'
我应该提到的是我的一个合作伙伴没有这些文件夹或文件。但是他运行项目正常没有问题。
我可以做些什么来解决这个问题吗?
让我们从一些基本的故障排除步骤开始。
- 删除您的 node_modules-文件夹
- 删除包-lock.json-文件
- 导航到包含 package.json-文件 的文件夹
- 运行 npm 安装
如果这能解决您的问题,请告诉我。