I am trying to integrate Firebase with Parse to add real-time capabilities to my application. However, some API functions (for example, the ability to limit Firebase requests using limit () or startAt () / endAt ()) are not available in the firebase REST API.
They are available with the Node.js module, but even though Parse Cloud supports modules like CommonJS, Iβm not sure that you can integrate the Firebase node module without any big configuration.
Any idea how I could access these features other than starting my own Node.js server with the Firebase plugin and using it to redirect my calls to firebase?
source share