DEV Community

Discussion on: Explain Serverless Like I'm Five

Collapse
 
dschep profile image
Daniel Schep • Edited

It's worth nothing that the serverless framework is one of many ways to use serverless architectures. Alteratives include:

  • Managing lambdas yourself in AWS's console (or equivalent for other platforms like Azure, etc)
  • Building & deploying your application with chalice AWS Lambda & Python ONLY
  • deploying your aplication with apex (AWS ONLY)
  • deploy a traditional Python WSGI app to AWS using Zappa
  • lots of other options.

The main advantage of the serverless framework is that it has the biggest userbase currently and works with many service providers (AWS, Azure, Google, OpenWhisk, OpenFAAS, Kubeless, just to name a few)