I believe nodemon is supposed to watch all directories for changes by default (expect for node_module, etc).
nodemon /bin/www 3000
But it's only monitoring changes to files in the root folder.
nodemon /bin/www 3000
[nodemon] 1.9.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node ./bin/www /bin/www 3000`
How can I specify that it watch all folders in the project?