Websites based on Scrivito are single-page applications, meaning that they don’t require a server for having pages rendered or business logic executed. They are serverless JavaScript applications running in the user’s browser, which makes them fast for visitors and frees their developers from constantly having to monitor the server’s health.
However, there are situations in which a serverless web app needs to make use of remote machinery: sending emails, communicating with a CRM, delivering ads, processing form content, posting messages to corporate communication tools such as Slack, and many more.
In all of these cases, the single-page app either doesn’t have the means to perform the task, or you simply don’t want to host your valuable access credentials on the client side. But you’re also reluctant to hire and operate a server for any such subordinate task. This is what serverless computing (or serverless infrastructure) services such as AWS Lambda were made for.