Posts

Showing posts with the label Serverless

How to Build a Web Services with Serverless + Typescript + DynamoDB

Image
In this article, we are focusing on the setup and use of three technologies to help you start developing Web Applications and Services. The technologies are Serverless, TypeScript and Amazon DynamoDB. Serverless Serverless is a deployment platform that focuses on providing a powerful and capable deploy system that supports multiple cloud platforms. Serverless (the platform) is not to be confused with the "serverless computing" ideology of using managed autoscaling cloud infrastructure instead of server-based cloud infrastructure.  Serverless (the platform) is an implementation of the "serverless computing" ideology.  Serverless abstracts the cloud platform-specific implementation for better usability and improved cloud portability. As a developer, this means you spend less time learning and dealing with platform-specific issues and instead learn cloud transferrable skills! Serverless is designed to be used in place of AWS CloudFormation, Azure Re...