You can write to the file store and then return a presignedUrl to the content, this will likely make for slow responses though, you would be fetching, writing, redirecting essentially.to gzip, use a lib like:https://www.npmjs.com/package/node-gzip ultimately Runtime actions ( and serverless in gener...
If you want to add a new action to your app builder project the command is:aio app add action This will prompt you for some info and add generic action code to your project that you can modify and deploy with aio app deploy | aio app run
I expect `aio runtime action create` does not do what you are expecting. This low-level command 'creates' the action in the Runtime environment, locally you are expected to have the code already. aio rt action create ACTIONNAME [ACTIONPATH] [--cert <value>] [--key <value>] [--apiversion <value>] [--...
No, you cannot use binary node modules.There are a couple reasons why this won't work.- The node module needs to be compiled for the target hardware, Runtime (and all serverless FaaS do not support JIT compilation)- anything you save to your database would be lost every time your image is discarded,...