$nodemon -e 'js jsx' ./bin/www
它运行但是当一个' js'或者' jsx'文件已更新。我尝试了一些变化;
$nodemon -e 'js jsx' --watch .. ./bin/www
$nodemon -e 'js jsx' --watch ./ ./bin/www
$nodemon -e js,jsx ./bin/www
$nodemon --ext 'js jsx' ./bin/www
我认为它无法看到根目录。