nodejs-webscraper
nodejs-webscraper copied to clipboard
npm run start fails to run
When I clone the repo and try to run npm run start I get this exception:
sh: nodemon: command not found
I recommend changing the package.json to use npx:
"scripts": {
"start": "npx nodemon index.js"
}
npm i -g nodemon
what worked for me npm install htmlparser2