Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Navigation Error on npm install

I'm trying to create a new react native app with react navigation.

I did the following:

1.) create-react-native-app myAppName

2.) cd myAppName/

3.) npm install --save react-navigation

4.) Expecting successful installation of react-navigation but instead i get:

C:\Users\Maima\Documents\GitHub\React\test>npm install --save react-navigation
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\jest.cmd as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\t
est\node_modules\jest
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\jest as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\test\
node_modules\jest
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\rimraf.cmd as it wasn't installed by C:\Users\Maima\Documents\GitHub\React
\test\node_modules\rimraf
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\rimraf as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\tes
t\node_modules\rimraf
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\uuid.cmd as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\t
est\node_modules\uuid
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\uuid as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\test\
node_modules\uuid
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\semver.cmd as it wasn't installed by C:\Users\Maima\Documents\GitHub\React
\test\node_modules\semver
npm WARN rm not removing C:\Users\Maima\Documents\GitHub\React\test\node_modules
\.bin\semver as it wasn't installed by C:\Users\Maima\Documents\GitHub\React\tes
t\node_modules\semver
npm notice created a lockfile as package-lock.json. You should commit this file.

npm WARN [email protected] requires a peer of react@* but none is i
nstalled. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react-native@* but no
ne is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react@* but none is ins
talled. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react-native@* but none
 is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react-nati
ve@* but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react@* but none is
 installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of react-native@* but
none is installed. You must install peer dependencies yourself.

+ [email protected]
added 8 packages, removed 973 packages and updated 20 packages in 259.667s

Please Help, Cant npm start my React Native App.

like image 959
Malcolm Maima Avatar asked Dec 03 '25 09:12

Malcolm Maima


2 Answers

It can be solved by running a npm install command again and reinstall the npm install --save react-navigation command.

like image 161
vijay0056 Avatar answered Dec 05 '25 01:12

vijay0056


I cant comment because I dont have the points, so heres a tentative answer with the info at the moment:

I had similar issue when running Expo on Windows. to solve I had to close XDE and reinstall.

if that's not enough, delete the "node_modules" folder and run "npm install".

like image 24
vbandrade Avatar answered Dec 05 '25 00:12

vbandrade