Best of ServerlessJuly 2022

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    The Software Architecture Handbook

    In this article we'll talk about what architecture is within the software world, some of the main concepts to know about it. For each topic I'll give a brief and superficial introduction and code/pseudo-code examples. The most commonly used are REST, SOAP and GraphQl. Most often the HTTP protocol is used. But other protocols and content formats are perfectly possible.

  2. 2
    Article
    Avatar of vercelVercel·4y

    Build Your Own Web Framework – Vercel

    ReactDOM Server exposes a method called renderToString, which takes a React component and returns the corresponding HTML output. To support static pages, we first have to implement a transpilation step that turns React-based pages into static HTML. To hydrate dynamic components, we can export a string literal that our bundler eventually uses to create a custom hydration script for individual pages.

  3. 3
    Article
    Avatar of faunaFauna·4y

    Why everyone wants to go serverless

    Fauna is hiring to work on systems and challenges related to globally distributed systems, serverless databases, GraphQL, and Jamstack

  4. 4
    Article
    Avatar of awstipAWS Tip·4y

    Let’s go Serverless.

    Serverless is a cloud native execution model in which the cloud provider dynamically allocates the resources needed to execute a particular piece of code. This offers automatic scaling, built-in high availability and cost optimization with pay-per-use billing. Let’s build a simple serverless architecture with API Gateway, Lambda functions, Dynamo DB and S3.

  5. 5
    Article
    Avatar of semaphoreSemaphore·4y

    5 Ways to Deploy Microservices

    Microservice applications can run in many ways, each with different tradeoffs and cost structures. What works for small applications spanning a few services will likely not suffice for large-scale systems. Microservices are the most scalable way of developing software. But that means nothing unless we choose the right way to deploy microservices.

  6. 6
    Article
    Avatar of quastorQuastor Daily·4y

    How the BBC uses Serverless

    The BBC relies heavily on Functions as a Service (FaaS) for scaling, specifically AWS Lambda functions. All traffic to the BBC website goes to the Global Traffic Manager, which is a web server based on N We’ll go through a couple of the things they did.

  7. 7
    Article
    Avatar of awstipAWS Tip·4y

    Going Serverless — Part 1. The goal of this article series is to…

    The goal of this article series is to get started with Serverless. During the series, you will learn how to build an application locally and deploy it to AWS with CI. For this example, I’m using NodeJS 14.17.6 and serverless V2 for this project.