Best of ServerlessDecember 2023

  1. 1
    Article
    Avatar of flydotioFly.io·2y

    Rethinking Serverless with FLAME

    FLAME is a pattern for elastically scaling applications without the need to manage servers or rewrite the entire application. It allows you to wrap existing app code in a function and run it in a temporary copy of your app. FLAME can be implemented in different languages, but the Elixir flame library is specifically mentioned in the article. The library includes features like process placement and remote monitoring to handle pool scale-up and scale-down logic and to optimize resource usage. FLAME removes the complexities and layers of communication associated with traditional FaaS solutions.

  2. 2
    Article
    Avatar of awsplainenglishAWS in Plain English·2y

    Deploying a Node Express API on AWS Lambda

    This post provides a step-by-step guide on deploying a Node Express API on AWS Lambda. It covers setting up the Express app, installing necessary plugins, modifying the app for Lambda compatibility, packaging the app, creating a Lambda function, setting up a test event, and obtaining the function URL. Deploying a Node Express server on AWS Lambda allows for scalable and cost-effective serverless applications.

  3. 3
    Article
    Avatar of awsplainenglishAWS in Plain English·2y

    Different Ways to Host APIs in AWS

    This article discusses different ways to host APIs in AWS, including using Amazon API Gateway, AWS Lambda with API Gateway, Elastic Beanstalk, Amazon EC2 Instances, AWS Fargate, and Amazon Lightsail. Each approach offers unique benefits and caters to specific needs and preferences.

  4. 4
    Article
    Avatar of awsplainenglishAWS in Plain English·2y

    Building a Serverless Image Processing Application with AWS Lambda

    Learn how to build a serverless image processing application with AWS Lambda. Understand the key features of Lambda and explore its use cases. Follow a step-by-step guide to set up S3 buckets, IAM roles, and create the Lambda function. Test the application by uploading an image and monitor its execution using AWS CloudWatch.