Home > Back-end >  Is Firestore for Node.js eventually moving to the new modular v9 used in Web?
Is Firestore for Node.js eventually moving to the new modular v9 used in Web?

Time:03-10

Sorry if this is the wrong place to ask this, but not sure where this would go! I am building an app with Firebase Firestore and Functions and would like to use the same query snippets between the front and the backend occationally, but now the v9 syntax is much different than the v8 syntax. Will we eventually see the same v9 syntax on the Node.js side?

CodePudding user response:

From version 10 on, the Admin SDK for Node.js supports the same modular syntax as version 9 and higher of client-side JavaScript SDK's. To get started have a look at the documentation on Upgrade to Node.js SDK Admin SDK v10 (modular SDK) .

  • Related