Kaumadie Kariyawasam
Kaumadie Kariyawasam

Reputation: 1476

npm warning to install the firebase

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.

enter image description here

How I solve this warning?

Upvotes: 2

Views: 1142

Answers (1)

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

Related Questions