Open stevenirby opened 2 years ago
When I clone the repo and try to run npm run start I get this exception:
npm run start
sh: nodemon: command not found
I recommend changing the package.json to use npx:
npx
"scripts": { "start": "npx nodemon index.js" }
npm i -g nodemon
what worked for me npm install htmlparser2
When I clone the repo and try to run
npm run start
I get this exception:I recommend changing the package.json to use
npx
: