NVNaman Vermaindeveloper20.hashnode.dev·Jun 10, 2023 · 4 min readWhat happens when you type a URL into your browser?Every day, we open our browser and navigate to our favourite websites by typing in their url or simply clicking on a link. Do you know what happened in the background after you typed the url or just clicked a link? How do you acquire the stuff you wa...00
NVNaman Vermaindeveloper20.hashnode.dev·Nov 8, 2022 · 2 min readDifference between dependencies, devDependencies and peerDependencies in npm package.json file?Introduction: Every web development project includes a file called package.json. This file contains project-related metadata. This file instructs npm how to manage the project's dependencies. It also includes other metadata such as the project descr...00
NVNaman Vermaindeveloper20.hashnode.dev·Jul 9, 2022 · 2 min readWhat is JSON in Javascript and how to work with JSON## Introduction JSON is short for JavaScript Object Notation is an lightweight format designed for easy data exchange. It supports every format of language and framework✌. JSON is pronounced as 'Jason'. Json is used for Storing Data Sharing data fr...00
NVNaman Vermaindeveloper20.hashnode.dev·Jul 1, 2022 · 3 min readUsing JSON Web Tokens for authentication in NodeJSWhen we are creating a website that requires user authentication and authorization and then only show the protected data to the user there are several ways to do that. 1) Local Storage 2) Session Storage 3) HttpOnly Cookies Firstly we have to create...00
NVNaman Vermaindeveloper20.hashnode.dev·Jun 22, 2022 · 2 min readVPN TechnologyVPN(Virtual Private Network) is an encrypted connection between a device and a network. It helps to safely transmit the sensitive data. It prevents unauthorized people from sniffing your packet and keeping it safe. Packet is a technical term meaning ...00