Angular & WebAssembly
What is Web Assembly? WebAssembly (Wasm) is a new way to run code on the web.It is a binary instruction…
AOT and JIT Compiler in Angular ?
An angular application mainly consists of HTML templates, their components which include various TypeScript files. Whenever we run over an…
Asynchronous programming with async and await
The async keyword First, we have the async keyword, which you put in front of a function declaration to turn…
How to Enable Local User and Group Management in Windows (lusrmgr)
Advanced User Management (lusrmgr.msc) allows you to manage all the users in your system in a single place. Disabling an…
How to Update Node.js to Latest Version
Node.js is an open-source JavaScript runtime environment. Since Node.js has an active community of users, minor updates of the software come…
How to build dynamic theme with CSS Variables ?
The above gif is the challenge we are going to conquer. Main tasks are: Have two squares, one reflecting primary…
What are the differences between npm and npx ?
What is NPM? NPM stands for Node Package Manager. It comes pre-installed with Node.js. NPM is used to install Node.js…
How to emit an event from parent to child component?
Usually we use @Output() and EventEmitter (from Angular/core) to emit an event to parent component. @Output() addTab = new EventEmitter<any>(); ...…
How to change (& disable default outline) border color on focus?
By clicking inside the input field or focus on the input field, how to change the border color? When the…
‘extend’ VS ‘implements’ in TypeScript
What is the difference between extends and implements ? class Media { format: string; } class Video extends Media {} class Image implements…