Home > Back-end >  Why is my 'npm start' script resulting in the error: 'run' is not recognized as
Why is my 'npm start' script resulting in the error: 'run' is not recognized as

Time:09-06

while giving command- npm start the result goes with this and I am not able to get the local host ip

[email protected] start run npm lite

'run' is not recognized as an internal or external command, operable program or batch file.**

also added- "scripts": { "start": "run npm lite", "test": "echo "Error: no test specified" && exit 1", "lite":"lite-server" }, in package.json file, but;

CodePudding user response:

It's npm run lite no run npm lite

CodePudding user response:

try npm install then npm start

  • Related