PostgreSQL Hosting on EC2: Configuring Automated S3 BackupsThe primary reason for hosting your database on EC2 is cost savings. At the time of writing this article, the most affordable/smallest RDS deployment costs approximately $20-$40 per month (depending on the usage). In contrast, you can utilize a t2.mi...Aug 10, 2023·9 min read
Everyday types in TypeScriptAs we explored in the last article, we have learned about TypeScript, why we use it, how it differs from JavaScript, how to install, configure, and run TypeScript, and some basic types in TypeScript. In this article, we’ll learn in-depth about some o...Jan 14, 2023·15 min read
Functions in TypeScriptWHAT ARE FUNCTIONS? Functions are the fundamental building blocks of any application in JavaScript. They’re how you build up layers of abstraction, mimicking classes, information hiding, and modules. In TypeScript, while there are classes, namespace...Jan 12, 2023·10 min read
Introduction to TypeScriptIn this article, you will learn what TypeScript is all about: its installation, the differences between TypeScript and JavaScript, its basic types and concepts, and how to configure TypeScript by adding the tsconfig.json file. WHAT IS TYPESCRIPT? T...Jan 12, 2023·13 min read