Best of Serverless โ€” November 2023

  1. 1
    Article
    Avatar of bytebytegoByteByteGoยท3y

    Serverless Has Servers

    Serverless computing is a paradigm where developers can build and run applications without managing the underlying servers. It abstracts away the servers, runtimes, and capacity planning, allowing developers to focus on application code. Serverless has become popular for startups due to cost savings, faster time-to-market, and auto-scaling.

  2. 2
    Article
    Avatar of awsplainenglishAWS in Plain Englishยท3y

    Docker Decoded: Cracking the Code to Smoother DevOps Operations ๐Ÿš€

    This article discusses common problems faced while using Docker and provides solutions to optimize Docker images, address resource limitations in containers, and manage container scalability.

  3. 3
    Article
    Avatar of awstipAWS Tipยท3y

    Serverless

    Serverless is a concept where developers only need to worry about the code and not the underlying architecture. In serverless, services like AWS Lambda handle the allocation of resources, deployment, and scaling automatically. The drawbacks of using a monolith include continuous running of machines, manual configuration, code deployment and management, and the need to scale up or down depending on user traffic. Serverless eliminates these concerns and charges on a per invocation basis. The code deployed on serverless platforms is in a sleep state until a user visits the website, at which point it switches to a start state and runs line by line before returning the response.

  4. 4
    Article
    Avatar of vercelVercelยท3y

    Node.js v20 LTS is now available in beta โ€“ Vercel

    Node.js version 20 is now available in beta and introduces new features, faster performance, and core APIs eliminating the need for some third-party libraries in projects.