Best of ServerlessSeptember 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Popular Software Architecture Patterns

    Architecture patterns address issues like high availability, Scaling efficiency, Hardware performance bottlenecks, minimization of business risk, etc. Some of the popular Architecture patterns are Monolith Architecture Pattern. Service-oriented architecture is an enterprise-wide approach to software development that takes advantage of reusable software components.

  2. 2
    Article
    Avatar of thisdotThis Dot·4y

    GitHub Actions for Serverless Framework Deployments

    Serverless Framework does all its configuration via a serverless.yml file. However, the framework officially supports alternative formats including.json,.js, and.ts. We decided to move all of our CI/CD to GitHub Actions. We had to make the following changes to our actions and configuration to get everything 100% working: serverless to get all of the serverless service. The app and org variables make it so it is required to have a valid dashboard login. This meant we couldn’t have a. serverless configuration.

  3. 3
    Article
    Avatar of awstipAWS Tip·4y

    Building an API using Serverless framework

    Serverless is a way to build and run applications & services without having to manage servers. There are 40+ Lambda templates for the most common use cases (e.g. microservice-http-endpoint, dynamodb-process-stream, sns-message, sqs-poller, s3-get-object, etc. You only pay for the time that Lambdas work.

  4. 4
    Article
    Avatar of logrocketLogRocket·4y

    Build an API with Next.js Lambda functions

    Next.js renders React components into HTML pages on the server after a page request comes from the browser. Next.js provides developers with API routes that can be deployed on Vercel as serverless functions. The API routes live inside the /pages/api folder and Next.JS maps any file inside that folder to /api/* as an endpoint. This feature is very interesting.

  5. 5
    Article
    Avatar of awstipAWS Tip·4y

    Serverless

    Serverless is an execution model where the cloud provider is responsible for executing a piece of code by dynamically allocating the resources. With Lambda, you can run code for virtually any type of application or backend service. But should not worry about the project or anything else.

  6. 6
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Computing

    Serverless is event-driven, functional code which runs on a cloud in a stateless manner. If you send one request to the API gateway, that will poke to the function, and the function comes up to serve the request and go back to sleep and the next rest come it has no idea about the previous request. The above screen shows that the function has been successfully created.