NPM выполнить скрипт с Nodemon

add below in package.json =>
"scripts": {
	"start": "nodemon my_file.js"
}
then run following command =>
npm start
amit.bhagat