[nodemon] 1.10.2
[nodemon] to restart at any time, enter rs
[nodemon] watching: _._
[nodemon] starting node index.js
...
[nodemon] Internal watch failed: watch ENOSPC
This version of Node is misleading about ENOSPC (no space): We actually just hit the maximum number of watchers for files.
Newer versions of Node i.e. 11.0.0+ give a feedback of a better quality instead:
[nodemon] Internal watch failed: ENOSPC: System limit for number of file watchers reached, watch '/a/filename/where/it/ran/out/of/watchers'
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p