vue js app yarn serve 失败,退出代码为 1。?

vue js app yarn serve is failing with exit code 1.?

我正在使用 vuejs 构建 Web 应用程序的前端。直到昨天,我的应用程序 运行 还不错,但今天 yarn serve 命令突然出现错误。

 Error: watch /home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/public ENOSPC
    at _errnoException (util.js:1022:11)
    at FSWatcher.start (fs.js:1382:19)
    at Object.fs.watch (fs.js:1408:11)
    at createFsWatchInstance (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:37:15)
    at setFsWatchListener (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:80:15)
    at FSWatcher.NodeFsHandler._watchWithNodeFs (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:232:14)
    at FSWatcher.NodeFsHandler._handleDir (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:414:19)
    at FSWatcher.<anonymous> (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:462:19)
    at FSWatcher.<anonymous> (/home/abhey/Documents/abhey/astrix/astrix_final_project/ecommerceFrontend/node_modules/chokidar/lib/nodefs-handler.js:467:16)
    at FSReqWrap.oncomplete (fs.js:153:5)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我确实尝试查看文档,但没有用。我也试图完全开始一个新项目,但没有帮助。有什么建议么?如果它有任何用处,我正在使用 Linux Mint 19 作为我的 os.

好吧,我在使用 npm 时遇到了同样的问题。 您可以尝试清理 npm 缓存删除节点模块文件夹并重新安装依赖项在您的终端中尝试此代码。

    cd ~
    sudo rm -rf .npm 
    cd <package folder where node module exist> 
    npm cache clean 
    rm -rf node_modules
    npm install

用 yarn 尝试相同的逻辑它会解决你的问题。