Reputation: 1476
When I installing the firebase with 'npm install -g firebase' to my react-native project. I received this warning message
npm WARN @grpc/[email protected] requires a peer of [email protected] || 6.x but none is installed. You must install peer dependencies yourself.
How I solve this warning?
Upvotes: 2
Views: 1142
Reputation: 470
try
npm i firebase
npm install google-auth-library -g
then
npm install firebaseui --save
then all the missing bits and warning have gone.
Upvotes: 1