Home > Blockchain >  Is Firebase cloud functions, do the terminologies 2gen and v2 refer to the same thing?
Is Firebase cloud functions, do the terminologies 2gen and v2 refer to the same thing?

Time:09-27

I'm checking out the Quotas and Limits for Firebase Functions on enter image description here

And I was wondering how can I convert my functions to 2gen. Is this what the "Cloud Functions v2 public preview" is about? enter image description here

Do the terminologies "2gen" and "v2" refer to the same thing?

Sadly, in the docs they never use both terminlogies in the same page, so even though it looks like it's the same thing, it's still not clear to me.

CodePudding user response:

Yes, they refer to the same thing. To convert your existing functions to gen 2, you just need to use the top level functions from the new SDK. For example:

const {onRequest} = require('firebase-functions/v2/https')

exports.myfunction = onRequest((req, res) => {})
  • Related