0

I have been doing a lot of research of alternatives to Parse's Cloud Code but can't seem to find a solid one. I already moved everything to Firebase but need a Cloud Code alternative to run some other things.

What would be my best options to call a Cloud Code method type for an iOS/Android app?

joe
  • 2,468
  • 2
  • 12
  • 19
mitch94
  • 236
  • 1
  • 3
  • 11

1 Answers1

1

Firebase just released Cloud Functions for Firebase, which allows you to run JavaScript functions on Google's servers in response to Firebase events (such as database changes, users signing in and much more). It covers a different set of use-cases than Parse's Cloud Code though, so you will have to modify your code to fit.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807