abu abu
abu abu

Reputation: 7052

Issue in `npm start` command in react.js

I am trying to install React.js. In this regard, I run npm install -g create-react-app and create-react-app my-app. Then I run the npm start command but I am getting below error.

enter image description here

Upvotes: 1

Views: 537

Answers (1)

Kamil Naja
Kamil Naja

Reputation: 6692

Please delete folder node_modules and clean npm cache

npm cache clean -f

Also try remove package-json.lock file.

After this re-run your command.

Upvotes: 3

Related Questions