一尘不染

Nodemon错误:达到文件监视程序数量的系统限制

node.js

我正在学习graphqlprisma- binding用于graphql操作。我在nodemon启动节点服务器时遇到了此错误,它为我提供了模式文件的路径,该文件由a自动生成graphql- cli。谁能告诉我这个错误是什么意思?

错误:

Internal watch failed: ENOSPC: System limit for number of file watchers reached, watch '/media/rehan-sattar/Development/All projects/GrpahQl/graph-ql-course/graphql-prisma/src/generated

阅读 403

收藏
2020-07-07

共1个答案

一尘不染

如果您使用的是Linux,则您的项目已达到系统文件查看器的限制

要解决此问题,请在您的终端上尝试:

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
2020-07-07