|
|
|
|
|
by ac360
2143 days ago
|
|
"serverless" is used to describe a new type of cloud infrastructure you can run your apps (Django, Flask, Express) so that they scale automatically and charge only per request, never for idle, at ~$0.000001 per request. The candid reason developers and Fortune 500s use serverless cloud infrastructure is because they want to build more and manage less. The "Serverless Framework" is a developer tool that helps developers deploy their apps to serverless cloud infrastructure, without having to be an expert in that type of infrastructure. It makes it easy for developers to deploy Django, Flask, Express apps so that they auto-scale and pay only per request, never for idle. Here is how you can deploy Express.js in seconds to serverless infrastructure: https://github.com/serverless-components/express |
|