Home > Software engineering >  Is it possible to get the source code of a firebase project?
Is it possible to get the source code of a firebase project?

Time:10-28

I received access to a google firebase project and would like to find out what some of the functions there do. Is there a way to get to the source of the functions of that project?

CodePudding user response:

Yes you can find your Cloud Functions code in the Google Cloud Platform console (not the Firebase console). As a matter of fact, your Firebase project is also a GCP project.

You can either copy/paste the code from the text area or use the "Download zip" button on the top-right corner of the screen.

  • Related