Lance Samaria
Lance Samaria

Reputation: 19592

Firebase -How to find the Firebase SDK version and Library I'm using

I'm trying to file an issue in the firebase Github repo: firebase repo.

This is my first time doing this and 2 of the things that are asked to provide are:

Firebase SDK version: _____
Library version: _____

enter image description here

I don't know where to find the Firebase SDK version nor the Library version.

I went to terminal and typed in:

firebase -v
firebase -version

but neither yielded any results.

How do I find these out?

Upvotes: 1

Views: 14904

Answers (2)

Mai Hai
Mai Hai

Reputation: 1330

Searching over your code base with keywords "firebase version",
you will find below files which represent your Firebase version.

enter image description here

Upvotes: 1

Doug Stevenson
Doug Stevenson

Reputation: 317497

If you're working with node, the version of the Firebase Admin SDK you're using is listed in your package.json file with the name firebase-admin.

Upvotes: 4

Related Questions