vuejs - Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'

vuejs - Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'

描述

每次我 运行 npm run serve 出现以下错误代码:

ERROR  Failed to compile with 1 error                                                                     15:34:19

This dependency was not found:

* ... in ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifie
r":"1a1491e2-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./no
de_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Ho
me.vue?vue&type=template&id=8dc7cce2&

To install it, you can run: npm install --save ...
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'
Error from chokidar (C:\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'
Error from chokidar (C:\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'
Error from chokidar (C:\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'

这个错误似乎是在我的 ./components/file.vue 中添加 bootstrap 轮播后出现的。虽然我不明白 carroussel 是如何链接到 npm chokidar 包的。

我试过的

此问题与 重复,我尝试了建议的解决方案但没有解决任何问题。我还按照错误代码和 npm cache clean --force 的建议尝试了 npm install --save。我已经卸载了 npm chokidar 包,但没有解决问题,并且也删除了 C:\DumpStack.log.tmp 文件。最后我还安装了 bootstrap-vue npm 包,对 bug 没有影响。 None 以下已解决问题,尽管我知道这可能是一个非常基本的错误。

package.json

{
  "name": "vuejs-client",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "3": "^2.1.0",
    "axios": "^0.21.1",
    "bootstrap-vue": "^2.21.2",
    "chokidar": "^3.5.1",
    "core-js": "^3.6.5",
    "vue": "^2.6.11",
    "vue-router": "^3.5.1"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "~4.5.0",
    "@vue/cli-plugin-eslint": "~4.5.0",
    "@vue/cli-service": "~4.5.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.7.2",
    "eslint-plugin-vue": "^6.2.2",
    "vue-template-compiler": "^2.6.11"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "eslint:recommended"
    ],
    "parserOptions": {
      "parser": "babel-eslint"
    },
    "rules": {}
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not dead"
  ]
}

我按照以下教程作为我想通过该网站实现的目标的参考框架:https://bezkoder.com/vue-node-express-mongodb-mevn-crud/

试试这个解决方案:错误:EBUSY:资源繁忙或锁定,rmdir

如前所述,该错误非常简单。我刚刚从 Bootstrap 复制粘贴了轮播模板,却忘记替换占位符。

抱歉打扰了,这可能有助于强调一个事实,即在提问之前您确实必须 link 点,因为解决方案可能非常基础。

我在全局安装 JSON-SERVER 并观察服务器后发生了这个问题。我不确定这是否是原因,但它发生在观看开始后。

我中止了手表,应用程序无法使用 npm 运行 serve 加载。

我尝试了每个论坛 post 我能找到的所有建议,包括 npm 安装、缓存清理、缓存清理 --force、重置我的计算机、禁用防病毒软件,并且我没有安装恶意软件。

唯一最终奏效的方法是创建一个全新的项目并将文件从旧的损坏项目复制并粘贴到新项目中。

我不明白为什么 JSON 服务器应该与原因有任何关系,除非监视锁定文件夹并使应用程序无法运行启用。

复制我的应用程序进行实验后,我会再试一次,因为除非您的项目足够小,否则复制和粘贴文件并不是一件有趣的工作。

更新:我认为解决这个问题的方法是不要全局安装 json-server。本地安装,使用npx json-server --watch观看。 否则,全局安装的 json-server 将通过该应用程序监视整个驱动器。这就是为什么我必须将代码复制到一个新的应用程序卸载 json-server 全局并在本地重新安装 .