Skip to content

R3DRUN3/serverless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SERVERLESS [λ ➡️ ☁️]

Everything serverless related.

Abstract

Serverless is a cloud-native development model that allows developers to build and run applications without having to manage the underlying infrastructure.

In this paradigm, servers are abstracted away from app development.
A cloud provider handles the routine work of provisioning, maintaining, and scaling the server infrastructure.
Developers can simply package their code in containers for deployment.

In addition to not having to worry about infrastructure and concentrating resources solely on writing code,
other advantages of serverless are that apps can automatically scale up and down as needed.

Serverless offerings from public cloud providers are usually metered on-demand through an event-driven execution model.
As a result, when a serverless function is sitting idle, it doesn’t cost anything.