Armaan Singharmaansingh.hashnode.dev·Sep 26, 2024Web Hosting Explained: Learn the BasicsHosting is the service of providing storage and access for websites or web applications on the internet. When you host a website, you store its files (like HTML, CSS, images, and scripts) on a server, making it accessible to users online. Important b...DiscussWeb Hosting
Armaan Singharmaansingh.hashnode.dev·Sep 23, 2024Beginner's Guide to React HooksThere are 12 built-in hooks in React. Here is a quick list: useState – For managing state in functional components. useEffect – For side effects like fetching data or updating the DOM. useContext – To use context values across components. useRedu...DiscussReact ArticlesReact
Armaan Singharmaansingh.hashnode.dev·Sep 22, 2024Discover Why You Should Use React JSHigh Performance 🚀: React apps are highly performant due to the virtual DOM and efficient diffing algorithms, even with complex UIs. Reusable Components ♻️: You can build components once and reuse them throughout your application, which speeds up d...DiscussReact ArticlesReact
Armaan Singharmaansingh.hashnode.dev·Sep 10, 2024The Benefits of Learning in Public SpacesLast week, I watched a video by Sivender Puri about “Learning in Public”. I found this idea impressive and I thought, why not give it a try? So here I am, starting my first blog in a series where I'll document my learning journey, experiences, projec...Discuss·56 readsLearn in Publicsavinder puri
Armaan Singharmaansingh.hashnode.dev·Sep 8, 2024I Uploaded My First YouTube VideoAfter a lot of procrastination, I finally did it – I uploaded my first YouTube video! Well, technically it’s the second one. 😅 Recording videos is tough, especially when you’re living away from family. It takes extra effort to get into the right zon...Discuss·28 readsarmaansingh
Armaan Singharmaansingh.hashnode.dev·Sep 6, 2024How to Use the useState Hook in ReactIn React, useState is one of the most commonly used Hooks. It allows you to add state (data that changes over time) to your functional components. Like the number of items in a shopping cart, a user’s login status, or even the theme of your app (dark...Discuss·36 readsReact ArticlesReact
Armaan Singharmaansingh.hashnode.dev·Sep 5, 2024How to Make a Background Changer Using ReactJSIt is a perfect project for beginners to learn the basics of state management in ReactJs. In this blog, I’ll guide you through how to build a background color changer using ReactJS, step by step. Step 1: Set Up Your React App Launch your terminal and...Discuss·29 readsReact Articlesarmaan