This Section is under development, I will add Some features in near Future :)

Blog

React Hook
11 March 2024
ReactJS

React Hooks are introduced react 16 with functional component. There are multiple built in react Hooks which we commonly used during application.

What is aggregation pipeline in Mongodb?
04 March 2024
MongoDB

Aggregation in mongodb is refered as the process of performing different type of operation on multiple documents with in a collection. This is done by using pipeline, which is made up of different stages. A stage output is input for another stage.

Difference between Access Token and Refresh Token
03 March 2024
Authentication

Access Token:it is used to access the resource from server by using the token. But this token had a shorter time validy which can range from 15 minutes to 1 day. These access token can't be used after their validity time expired.

Refresh Token:refresh token is used to refresh something. Refresh token has longer validity time than Access token. It can range from 5 days to months or year. This refresh token is used to refresh the Access token as access token will be expired after sometime. Refresh token provides extra layer of validation for Authentication.