Serverless

What is Serverless?

In a nutshell, Serverless means Event-driven computing using small independent stateless functions runnning inside containers in the cloud.

Our code is running on the cloud platform, like AWS.

When triggering event occurs, the cloud platform spins up a container, loads the fucntion and executes it.

Once the function completes execution, it optionally returns a response back to the caller and then finally exits or shuts down.