When injected, HttpBackend dispatches requests directly to the backend, without going through the interceptor chain.
import {HttpBackend, HttpClient} from '@angular/common/http';
import {Injectable} from '@angular/core';
@Injectable({
providedIn:...
Read More ⟶
Search the path of actual installed packged detination. After that copy and run like below command.
which npm
which node
which pm2
sudo ln -s /home/ec2-user/.nvm/versions/node/v16.15.1/bin/npm
sudo ln -s /home/ec2-user/.nvm/versions/node/v16.15.1/bin/node
sudo...
Read More ⟶
This article will show you how to use Angular Date pipe in component ts file.
To achieve the same we need to import `DatePipe` exported function from angular core modules.
import { DatePipe } from '@angular/common';
transform() {
return new...
Read More ⟶
This error generally comes when you upgrade your angular fire and firebase to the latest version.
data['id']=this.createId();
For the new Firebase 9 you need to do the following change.
...
Read More ⟶
Revert last commit in GIT
git reset --soft HEAD~1
--soft will not remove your uncommited code. Again if you replace the same with --hard it is going to replace all the uncommited code in your local
git reset --hard...
Read More ⟶
Here we will show you how to track all remote branches in GIT and get them all at once in your local.
Below is the demo of a git where there are several branches and each branches there are some code.
https://github.com/Santoshah/firebase-auth
To get...
Read More ⟶
Three modes of SVG
Object
embeded srcobject data=""iframe src=""
Image
img srcbackground : url()
Inline
svg path {stroke-dasharray: 5, 2;stroke-dashoffset :...
Read More ⟶
const myAwesomeArray = [1, 2, 3, 4, 5]
const startForEach = performance.now()
myAwesomeArray.forEach(x => (x + x) * 10000000000)
const endForEach = performance.now()
console.log(`Speed [forEach]: ${endForEach - startForEach} miliseconds`)
const startMap =...
Read More ⟶
// Capital letter - 1
// small letter - 2
// number - 3
// spl char - 4
let str = "l. lorem ip 123";
let str1 = "skdfh skdfh alsjdhf KJHGH24 ksdhfksfh";
let arrayStr = str1.split(" ");
let obj = {}
function checkCase(ch) {
if (!isNaN(ch *...
Read More ⟶
In this another small article I am going to explain what is different between JIT and AoT in Angular and which one is better.
Just In Time (JIT) and Ahead of Time (AoT) is Angular compiler which runs in Angular background
Just in Time (JIT)
Inefficent for...
Read More ⟶