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

我正在学习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

回答:

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

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

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

以上是 Nodemon错误:达到文件监视程序数量的系统限制 的全部内容, 来源链接: utcz.com/qa/405327.html

回到顶部