I'm an aspiring Software Developer and currently a Computer Science undergrad looking forward to open source communities.
- 🌱 Currently learning Full Stack Development
- 🥅 2024 Goals: Contribute more to open source projects
- 📫 How to reach me: [email protected]
- ⚡ Fun fact: The whole world is enough of a fact for this
What is JWT and why do we need it?
4 Sept 2023
A JSON web token(JWT) is JSON Object which is used to securely transfer information over the web(between two parties). It can be used for an authentication system and can also be used for information exchange. Data can be authenticated and trusted du...
Closures: Your Pathway to JavaScript Mastery
18 Aug 2023
What are Closures? Closures are a fascinating and powerful concept in JavaScript that allow functions to remember and access their lexical (or surrounding) environment even after they have finished executing.
In simpler terms, a closure is formed wh...
WebSocket Demystified: Your Gateway to Real-Time Communication
5 Aug 2023
What exactly is a WebSocket? A WebSocket enables a user to send and receive messages to and from a server. So, in essence, this is a method of communication between Client and Server. Let's first comprehend this communication; we'll return to WebSock...
7 July 2023
An HTTP server, also known as a web server, is a software application that handles and responds to Hypertext Transfer Protocol (HTTP) requests. It is a fundamental component of the client-server architecture used in the World Wide Web. HTTP servers a...