The Tech PlatformJun 224 minIntroduction to Duck Typing in TypeScriptWhat is Duck Typing? Duck Typing is usually used in code that needs to handle a range of different data, often without knowing exactly...
The Tech PlatformJun 82 minWrite a program to Check if a Value exists in an Enum in TypeScriptEnums or enumerations are a new data type supported in TypeScript. Most object-oriented languages like Java and C# use enums. This is now...
The Tech PlatformMay 315 min11 Best Productivity Tools for DevelopersProductivity tools for developers can easily save the day and make work faster, easier, and more efficient. They can also help relieve...
The Tech PlatformApr 302 minWhat's new in TypeScript 4.7?TypeScript 4.7, now in a beta release, offers ECMAScript module (ESM) support for Node.js 12 as well as a multitude of coding...
The Tech PlatformFeb 243 minWhat are Decorators in TypeScript?A Decorator is a special kind of declaration that can be applied to classes, methods, accessor, property, or parameter. Decorators are...
The Tech PlatformFeb 72 minHow to Create TypeScript Aliases?Open your tsconfig.json file. Set baseUrl value (under compilerOptions) as “src” instead of “.” Add “paths” under compilerOptions. Start...
The Tech PlatformJan 184 minCommand Pattern in TypescriptCommand is a behavioral design pattern that turns a request into a stand-alone object that contains all information about the request....
The Tech PlatformDec 30, 20213 minKeyOf Operator in TypeScriptThe keyof is one of the operators that can be used to fetch the user values; also, it follows the union operator formats and its...
The Tech PlatformDec 22, 20215 minA Generic Function to Update and Manipulate Object Arrays in TypeScriptWhile building my newest SaaS product, ReduxPlate, I realized a common pattern kept cropping up in my array manipulation functions. I was...
The Tech PlatformDec 16, 20215 min.NET 6 Web APIs with OpenAPI TypeScript Client GenerationYou’re building a new web API from the ground up. Which approach should you pick for building your API? gRPC? GraphQL? REST? Some would...
The Tech PlatformOct 29, 20214 minDatoCMS for Angular ApplicationsDato CMS is one of the most popular headless CMS out there, and briefly, why are all those CMS so trending now? First of all, what the...
The Tech PlatformSep 28, 20218 min5 ways to make HTTP requests in JavaScriptModern Javascript provides a number of ways to send HTTP requests to remote servers. From the native XMLHttpRequest object to third-party...
The Tech PlatformJul 28, 20214 minTypeScript Enum Guide: Get Started in 5 MinutesEnumerations (or enums) are a supported data type in TypeScript. Enums are used in most object-oriented programming languages like Java...
The Tech PlatformJul 22, 20214 minBuilding D3 interactive network graph D3 Force-Simulation + React + TypeScriptWe can build very powerful network graphs using D3 Force Simulation library. In this blog, I have done same exercise but with React.js...
The Tech PlatformJul 12, 20212 min5 Utility Types For Transforming Types in TypescriptOne of the great things about typescript is its flexibility. You can transform, change, and create new types using existing types. In...
The Tech PlatformJul 8, 20215 minStrategy Pattern Implementation with Typescript and AngularDesign patterns are proven, practical, and reusable solutions fit for tackling specific problems in software development. They not only...
The Tech PlatformApr 12, 20216 minC# .NET Core and TypeScriptUsing Generics and LINQ to Secure and Filter Operations on Your JSONPatchDocuments In a recent project, I had to implement an edit form...
The Tech PlatformApr 9, 20214 minTypeScript Programming LanguageTypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It is pure object-oriented with classes, interfaces and...
The Tech PlatformApr 2, 20214 minUsing Firestore With TypescriptThe Problem Something that’s been on my TODO for a while now has been to figure out a slick and clean way of using Firestore in a more...
The Tech PlatformMar 8, 20213 minCloud Firestore Development (With Typescript)The purpose of this article is to show you how I added the calls between the React application and Cloud Firestore, and also how I added...