/bin/sh nodemon not found code example
Example 1: nodemon command not found linux
sudo npm install nodemon -g
Example 2: zsh: command not found: nodemon
npm config set prefix /usr/local
sudo npm install nodemon -g --registry=https://registry.npm.taobao.org
12