Is there a way to use Firebase with Stripe without an additional server?

I built my application with Firebase and everything works beautifully. But now I need to charge the user like Uber style (using Stripe Connect or a market solution). Stripe requires server setup for the CHARGE user. Angular can only generate a Stripe marker. Can I use Firebase (or Firebase Queue) to execute the custom part of CHARGE, so I don’t need to create a new nodejs server to just insert a couple lines of Stripe code? If so, can someone tell me how to do this or for example? Thank you

+5
source share
1 answer

You can use a serverless solution such as AWS Lambda or Webtask.io. This allows you to load a minimal set of scripts that process backend processing to charge the client and create an entry in Firebase.

+1
source

All Articles