email-finder
email-finder copied to clipboard
Hi i am facing issues, while installing email-finder app at my local Windows PC
This is what i am facing after installing it throug: npm install
then npm run
i also fixed some issues using
npm audit fix
and
npm audit fix --force
but still facing issue, please help.
Can you drop all your command line from start ( i mean step by step till installing) lets see what is wrong.
I ran into the same issue. I fixed it by modifying my package.json file.
Change
"scripts": { "start": "DEBUG=index node index.js",
For
"scripts": { "start": "set DEBUG=index & node index.js",
Hope it helps.