# Serverless Framework — Build and Deploy Serverless Apps to Any Cloud > The most widely adopted toolkit for building serverless applications on AWS Lambda, Azure Functions, Google Cloud Functions, and more. Define infrastructure and functions in a single YAML file and deploy with one command. ## Install Save as a script file and run: # Serverless Framework — Build and Deploy Serverless Apps to Any Cloud ## Quick Use ```bash npm install -g serverless serverless create --template aws-nodejs --path my-service cd my-service serverless deploy ``` ## Introduction Serverless Framework is the original and most popular open-source CLI for building and deploying serverless applications. It abstracts away cloud provider complexity so you can focus on business logic. With support for AWS, Azure, Google Cloud, and more, it provides a unified developer experience across clouds. ## What Serverless Framework Does - Defines functions, events, and resources in a single `serverless.yml` file - Deploys entire serverless stacks with `serverless deploy` in seconds - Manages CloudFormation, API Gateway, IAM roles, and other infra automatically - Supports event sources like HTTP, cron, SQS, S3, DynamoDB Streams, and Kafka - Provides a rich plugin ecosystem with 1,000+ community plugins ## Architecture Overview Serverless Framework translates your `serverless.yml` into provider-native templates (CloudFormation for AWS, ARM for Azure). The CLI packages your code, uploads artifacts to cloud storage, and orchestrates deployment through the provider's infrastructure API. A plugin system hooks into every lifecycle event, enabling custom packaging, monitoring, and testing workflows. ## Self-Hosting & Configuration - Install globally via npm: `npm install -g serverless` - Configure cloud credentials via environment variables or AWS profiles - Define functions in `serverless.yml` with runtime, handler, memory, and timeout - Use stages (`--stage dev`) to manage multiple environments from one config - Extend with plugins in `serverless.yml` under the `plugins` key ## Key Features - Multi-cloud support: AWS Lambda, Azure Functions, Google Cloud Functions, Knative - Infrastructure as Code via declarative YAML with variable interpolation - Automatic API Gateway and event source mapping configuration - Local development and testing with `serverless invoke local` - Composable architecture through Serverless Components for full-stack apps ## Comparison with Similar Tools - **AWS SAM** — AWS-only, tighter CloudFormation integration, but no multi-cloud support - **SST** — Builds on CDK with live Lambda debugging, more opinionated and AWS-focused - **Terraform** — General IaC tool; more verbose for serverless but better for mixed infra - **Pulumi** — Uses real programming languages instead of YAML; steeper learning curve - **Claudia.js** — Lightweight AWS Lambda deployer; fewer features and no multi-cloud ## FAQ **Q: Does Serverless Framework only work with AWS?** A: No. It supports AWS Lambda, Azure Functions, Google Cloud Functions, and Knative. AWS has the deepest integration, but multi-cloud is a core design goal. **Q: Is there a free tier?** A: The open-source CLI is fully free. Serverless Inc. offers a paid Dashboard for monitoring, CI/CD, and team collaboration features. **Q: How does it handle environment variables and secrets?** A: You can define them in `serverless.yml` under `provider.environment`, reference SSM parameters, or use the `dotenv` plugin to load `.env` files. **Q: Can I use it with containers instead of zip packages?** A: Yes. AWS Lambda container image support is available by setting `package.type: Image` and providing a Dockerfile. ## Sources - https://github.com/serverless/serverless - https://www.serverless.com/framework/docs --- Source: https://tokrepo.com/en/workflows/1ec1408a-398f-11f1-9bc6-00163e2b0d79 Author: Script Depot