Tamiz Uddingenzit.xyz·9 hours agoStep-by-Step Guide: Setting Up a React.js Vite Project with Best PracticesReact.js is one of the most popular JavaScript libraries for building user interfaces, and Vite has emerged as a blazing-fast build tool that enhances the development experience. Combining React with Vite allows developers to create modern, high-perf...React JS TutorialReact
Richa リチャrichak.hashnode.dev·Feb 16, 2025HTML Interview Prep – What I Wish I Knew Before My First Interview! 😅My HTML Interview Struggles 😭 When I started learning web development, I was excited about HTML & CSS. I built a ton of static websites, adding cool fonts and colors. But there was one thing I didn't focus on – interview preparation. And that came b...Web Development
Pranav Bawgikarpranavbawg.hashnode.dev·Feb 16, 2025React Hooks & why they make life so much easier[32] useState It manages the state in a functional component. For example, toggle visibility of text. const [visible, setVisible] = useState(false); onClick = { () => setVisible(!visible)}; useEffect React has a new tool called the useEffect hook. I...React
OnlineITtutsonlineittuts.hashnode.dev·Feb 15, 2025Search Bar Filter in React JS with APIHey everybody, Let’s look at how to make a Search Bar Filter in React JS with API many sites are using that feature inside the application, users can search for something inside the search bar and who can see the search suggestions. Building a search...search bar filter
OnlineITtutsonlineittuts.hashnode.dev·Feb 14, 2025How to Build Weather App in React JSHey developers hope you are fine, let’s look at how to build a weather app in React JS from scratch, by building a weather app we will use Weather API to get the live weather details. So, we are using OpenWeather API to get data. You can get a lot of...Build Weather App,
Oni Ebunoluwa Mercyebuntoday.hashnode.dev·Feb 11, 2025How To Use Scroll Carousel ReactBack story: I wrote this article back in 2023 but hesitated for so long to share it. But here it is—my supposed first tech article! Introduction Hi everyone! This is my first tech article, and I wrote it with you in mind because it took me several da...scroll-carousel
Jasraj Chouhanisjasrajchouhan.hashnode.dev·Feb 10, 2025A Deep Dive into the Presentation Container Pattern with React.jsThese are reusable solutions to common software design problems that help improve the overall structure of your application. Take a closer look at one specific design pattern – the Presentation Container Pattern – with practical examples in React.js....react_with_typescript
React Mastersreactmasters.hashnode.dev·Feb 10, 2025How SSR Differs from Client-Side Rendering in ReactIntroduction Rendering strategies are crucial for user experience, SEO, and overall performance when building React applications. Two of the most commonly used rendering techniques are Server-Side Rendering (SSR) and Client-Side Rendering (CSR). CSR...SSR
Pamela Salonpamsalon.hashnode.dev·Feb 5, 2025How to Build Accessible Apps Using ReactJSAccessibility is a crucial aspect of modern web development. It ensures that all users — including those with disabilities — can access and engage with an app’s content and functionality. An experienced ReactJS developer can build apps that comply wi...react js
Pulkit Govranipulkitgovrani.hashnode.dev·Feb 2, 2025Building an Income Tax Calculator in ReactIntroduction Income tax is a significant aspect of financial planning, and understanding how much tax you owe can sometimes be a confusing process. To simplify this, I’ve developed a dynamic Income Tax Calculator using React, designed to help users c...JavaScript