Tag: aws lambda

  • How to run AWS Serverless in local?

    AWS Lambda is a serverless application. That means you don’t have control over where to deploy your app on AWS. AWS will take care of that. But where and how do you deploy the app locally for your testing. You can do this in two ways: Using Serverless invoke local command: Using this command you…

  • How to set up serverless framework?

    Serverless applications brought about a new paradigm in programming. You no longer need to worry about server infrastructure and concentrate only on your business logic. AWS lambda serves this purpose. And Serverless is a framework that eases the development and deployment of AWS lambdas. Here is how to set up the serverless framework in your…