Nodemon Error: “System limit for number of file watchers reached”

If you are using Linux, your project is hitting your system’s file watchers limit

To fix this, on your terminal, try:

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

Leave a Comment