Angular: displaying HTML content without sanitizing/filtering
You might have a situation where you need to display/bind HTML code into some DOM elements. Usually, there’s no problem…
Passwordless Authentication in Node.JS
Broken authentication is the second-highest security risk for web applications. This usually means that session management and authentication aren’t handled correctly.…
Thunder Client (REST API Client for VS Code)
Thunder Client can be looked like an alternative to Postman. Postman is a popular API client that makes it easy for…
Docker Compose ( Introduction)
Docker Compose is a tool that allows you to describe (in a YAML file) and manage (in command line) several…
package-lock.json VS package.json
When writing JavaScript applications, you describe its dependencies using a package.json file. This file contains all of your applications direct dependencies and…
How to check port used in our Computer.
Linux To check the listening ports and applications on Linux: Open a terminal application i.e. shell prompt.Run any one of…
“ng add” VS “npm install”
As Angular6 has been released, They have added a new command ng add . what will be the difference between existing command…
First steps with Docker
A Docker Container is an environment that contains an application, or multiple applications, and all the libraries, other applications and tooling they…
Error: This version of CLI is only compatible with the Angular version but angular version was found instead (Bugs)
Resolution We get this error because of the difference in Angular CLI installed globally Vs local project workspace. It happens…
SSH – Connection failure (Bugs)
When trying to login to remote server from the local machine using terminal, You could sometimes get the following message…