Build Apps Without Managing Servers
Serverless is a cloud computing model where you run code without managing servers.
AWS Lambda Google Cloud Functions Azure Functions Firebase Functions
Event → Function → Response
exports.handler = async (event) => {
return {
statusCode: 200,
body: "Hello Serverless"
};
};
- No server management - Auto scaling - Pay per use
- Cold start delay - Limited control - Not for heavy apps