Search code examples
node.jsgoogle-cloud-platformaws-lambdagoogle-cloud-functions

Is there an easy way to deploy my users cloud functions and execute them?


I'm creating a saas product. In the product, users can create workflows.

I would like to give them the ability to add js functions to the workflow, in order to process the data at given steps. Something limited (http call, basic data structure manipulation and condition, for, etc). The same as Cloud functions or lambda but even simpler.

Is there a way to do that easily ? Maybe by using Google Cloud functions, create one dynamically and remove it after execution ?

Thank you !


Solution

  • There's a REST API to manage Cloud Functions that allows you to deploy functions however you see fit. I imagine that's what most similar VAR solutions use.