ssh command not found code example
Example 1: pip command not found macos
sudo easy_install pip
Example 2: bash firebase command not found
alias firebase="`npm config get prefix`/bin/firebase"
Example 3: nodemon command not found
npx nodemon server.js
or add in package.json config:
...
"scripts": {
"dev": "npx nodemon server.js"
},
...
then run:
npm run dev