I am running my nodejs app by npm start
npm start
I just installed nodemon by sudo npm install -g nodemon so that i can get my server restarted when i s
sudo npm install -g nodemon
Use single quotation for multi-value args like `--exec'.
single quotation
e.g. I changed "nodemon --exec yarn build-langs" to "nodemon --exec 'yarn build-langs'" and worked.
"nodemon --exec yarn build-langs"
"nodemon --exec 'yarn build-langs'"