error : problem performing npm start , failed at the [email protected] start script - React

Asked

Viewed 55 times

0

I’m trying to run my app on React by command npm start , but every time that comes along:

#
# Fatal error in , line 0
# Check failed: U_SUCCESS(status).
#
#
#
#FailureMessage Object: 0000007AEDF1DEE0npm ERR! code ELIFECYCLE
npm ERR! errno 3221225477
npm ERR! [email protected] start: `react-scripts start`
npm ERR! Exit status 3221225477
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

I’ve already downloaded some forum , I’ve tried to delete node_modules and package-lock.json and reinstall them , update npm , install [email protected] , but none of it works, anyone have any idea ? Thank you

  • https://stackoverflow.com/a/39960890/6797930 try this answer

  • already tried ,was one of the first I found , but n was

1 answer

0

I had the same problem.

I managed to settle by doing:

  • npm install -g npm@latest to update npm
  • rm -rf node_modules to remove all existing modules
  • npm install to re-install the project dependencies.

Obs.: In my case I installed npm@latest without using -g (global)

Then I circled the npm run build and npm start.


With that, error appeared in Node-Sass, then I:

Do this for all dependencies that show error.


As done here: https://stackoverflow.com/questions/39959900/npm-start-error-with-create-react-app/39960890#39960890

Browser other questions tagged

You are not signed in. Login or sign up in order to post.