Posts
Code and Cloud
Cancel

Using environment specific variables in Angular

Using environment-specific variables in angular, the right way! We have seen environment variables being used in angular projects. They are used to in projects with different build configurations ...

Non-null assertion operator in TypeScript

Have you seen something like node!.parent and ever wondered what the post-fix expression ! is doing in the typescript code? That is the non-null assertion operator introduced in TypeScript 2.0. As ...

Integrating ESLint to VS Code

Steps on how to integrate ESLint on VS Code Before integration one will have to install ESLInt by opening the Extensions from inside the VS Code. You can also install it from Visual Studio Marketp...

Using Partials in TypeScript

Partial<T> is one of the several utility types available globally in TypeScript. Partial Constructs a type with all properties of T set to optional. This utility will return a type t...