Olga TashlikovichforSVAR UIsvar-widgets.hashnode.dev·Nov 18, 2024Introducing SVAR Gantt: Open Source, Interactive Gantt Chart for ReactNeed to implement project management functionality in your React app? Most likely you've considered a Gantt chart as an option, since it's been an effective tool for project planning for many years. But implementing a custom Gantt chart in React can ...DiscussReact
shohanur rahmanshohan777.hashnode.dev·Nov 16, 2024Why React uses Pure Components?React enforces using pure components. To ensure this React has ‘StrictMode’ on in the development mode/environment. So that any impure component can be identified. React Doc says, “React’s rendering process must always be pure. Components should only...DiscussReact
Gedion Danielblog.gediondaniel.dev·Nov 10, 2024How I Deployed My First Full Stack Node.js App on AWS EC2: A Complete GuideHey there! 👋 I remember how overwhelming it felt when I first tried to deploy a full stack application on AWS. After lots of trial and error, I've put together this guide to help you deploy your Node.js app with a React frontend and MySQL database o...DiscussEC2 instance
Shikhar Shuklashikhar99.hashnode.dev·Nov 9, 2024Modern ESLint Configuration in React: Managing Prop Types and Unused Variables WarningsWhen working on React projects, ESLint is an invaluable tool for enforcing code quality. But sometimes, the default rules may not align with the specific needs of your project. In this article, we’ll explore how to configure ESLint for React applicat...Discusseslint
BehinDevprofessoruzair.hashnode.dev·Nov 1, 2024Lesson 1.1: What is React JS and Why Use It?React.js is a powerful JavaScript library developed by Facebook for building dynamic user interfaces, especially for single-page applications. It simplifies UI development by managing the view layer in web and mobile apps, allowing developers to crea...Discuss·10 likesReact JS Mastery Coursetraining course
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Oct 29, 2024Building a Comprehensive User Authentication Flow with React and Node.js (Part 2)In this blog post, we’re delving into the front-end setup for our crypto exchange platform’s user authentication. Following the backend setup we explored earlier, let’s now build a user-friendly, responsive React interface that includes registration,...DiscussReact
AddWeb Solutionaddwebsolution.hashnode.dev·Oct 28, 2024Building a Better React Application with Repository and Adapter Design PatternsIn modern web development, React applications development requires efficient data handling and smooth communication between components and external systems. Two popular design patterns that help achieve this are the Repository and Adapter patterns. B...DiscussReact
Kundalik Jadhavcodewithjk.hashnode.dev·Oct 17, 2024How to create react projectHi there I know you are here to know how to create a react project. So today I will teach you with simple steps how to create your first react project.DiscussReact
RIMANSHU SINGHforme.hashnode.dev·Oct 8, 2024Discovering React.js: Key Basics for NewcomersFirst two ways data binding For example, if we type something in an input field directly, it updates the DOM. However, we don't need to do this because React uses a concept called the Virtual DOM. So, whenever we need to enter something in an input b...Discuss·3 likesReact
Payal Porwalcodeswithpayal.hashnode.dev·Oct 6, 2024Detailed Difference Between npx create-react-app and ViteWhen creating a React project, the choice between npx create-react-app (CRA) and Vite has several significant differences in terms of file structure, configuration, and performance. Let’s break it down: 1. File Structure npx create-react-app (CRA): ...Discuss·1 like·59 readsReact