Docker 1 - Docker Introduction
Introduction The process of developing, deploying, and managing software applications can be complex. Development & Deployment Process: Teams involved: Developmen...
Introduction The process of developing, deploying, and managing software applications can be complex. Development & Deployment Process: Teams involved: Developmen...
Some Go Facts Created by Google in 2011 Language created from scratch Open source It is not a Googleβs product It is multiplatform It is multi-purpose Why Go? Easy to code ...
Introduction SOLID is an acronym for the first five object-oriented design (OOD) principles by Robert C. Martin. These principles intend to make software designs more understandable, flexi...
Introduction Before proceeding, make sure you have already understood the basics of testing in React. See the article on Testing a normal React App for the basics. This article covers only the ...
Introduction Bootstrap a React app with Create React App by running the following command: npx create-react-app GIVEN-PROJECT-NAME Introduction What is Testing and why What to tes...
Introduction Bootstrap a React-vite app with Typescript by running the following command: npx create-vite@latest GIVEN-PROJECT-NAME Be sure to replace GIVEN-PROJECT-NAME with the name ...
Type Narrowing in TypeScript TypeScript has a feature called type narrowing. It allows you to narrow down the type of a variable based on a condition. TypeOf Guard Consider the following example...
Type Declarations in Third-Party Modules Some third-party modules may declare types in their own @types packages. The type declarations are usually located in the index.d.ts file. Example A...
Modules in TypeScript Modules are a way to organize code in a file. It helps to keep the code clean, organized, and easy to maintain. The general idea is to split the code into multiple fil...
What are Generics? Generics are a way to make components work with any data type and not restrict to one data type. For example, a function that returns the first element of an array: const cars ...