I'm confused by nodemon's warning message:
myproject $ nodemon index.js
26 Nov 11:14:31 - [nodemon] v1.2.1
26 Nov 11:14:31 - [nodemon] to restart at any time, enter `rs`
26 Nov 11:14:31 - [nodemon] watching: *.*
26 Nov 11:14:31 - [nodemon] starting `node index.js`
26 Nov 11:14:31 - [nodemon] watching 26,084 files - this might cause high cpu usage. To reduce use "--watch".
If I count all the files, i get:
myproject $ find . | wc -l
16628
And vast majority of those files are under .git
and node_modules
which should be ignored by nodemon anyway. Any idea what could be causing this?
(I'll use --watch
for the time being)
I admit I'm a little flummoxed by the file count compared to watch count, but a good option may be to update your nodemon to the recent 1.3.0 release:
The update fixes many bugs and annoyances including ignore rules taking priority over watch rules, and new default options to ignore common directories such as .git and .sass-cache (the old 1.2 version didn't do that very well, if at all.)