David Willifordblog.davidwilliford.dev·Nov 18, 2024Solving "Invalid Hook Call" Errors in ReactThe infamous "Invalid Hook Call" error can be a massive headache, especially in complex applications using large JavaScript files. The reason this error is obnoxious is that it is found in runtime, so you will not know it exists until you run your ap...DiscussReact
bchiragbchirag.hashnode.dev·Nov 17, 2024Guide to Editing, Deleting, and Updating Data in MUI X DataGridHey there! How’s it going? 😊Hope all is well with you! In today’s blog, we’re diving into the customizations of tabular data using the powerful tools provided by MUI X DataGrid. When it comes to working with tables, there are a few essential operati...Discuss·10 likesReact
Lim Woojaejaylog.hashnode.dev·Nov 17, 2024[React.js] Uncaught TypeError: Cannot read properties of undefined (reading 'map')About Error When I execute this react code, <div id={id} className="row__posters"> {movies.length > 0 ? ( movies.map((movie) => { return ( <SwiperSlide> <img key={movie.id} style={{ padding: "25px...DiscussReact.jsReact
Yashaswi Sahuyashaswisahu.hashnode.dev·Nov 16, 2024GSAP With ReactIntroduction to GSAP GreenSock Animation Platform (GSAP) is a powerful JavaScript library for creating smooth, high-performance animations. When combined with React, it enables developers to create seamless, professional-grade animations. This blog w...DiscussGSAP
React MastersforReact Master's blogreactmasters.hashnode.dev·Nov 15, 2024Nested Routing in React JSNested routing is a powerful feature in modern web applications, enabling the development of complex UI hierarchies while maintaining modularity and clarity in the codebase. In React JS, libraries such as React Router are widely used for routing impl...Discussrouting
Cosmic Webcomicweb.hashnode.dev·Nov 14, 2024Essential React Concepts for Modern DevelopersReact has continually evolved, offering developers powerful tools and concepts to build efficient, high-performing web applications. Here’s a look at some essential concepts in React and how they shape the future of front-end development. Whether you...DiscussReact
Amar Jondhalekarcoffeewithamar.hashnode.dev·Nov 10, 2024Mastering React Performance: Essential Tips for Writing Optimized and High-Performance CodeAs a seasoned full-stack developer with a deep focus on creating high-performance, efficient applications, I've found that optimizing React code is key to delivering a smooth, responsive user experience. Whether you’re working on large-scale applicat...DiscussReactJS Evolution: Learn from the Ground UpReact
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
Abhishek Rautsweabhishek.hashnode.dev·Nov 10, 2024Understanding Redux Architecture: The Story of State, Actions, and Reducers!Hello, fellow coders! Today, we’re diving into the magical world of Redux—the ultimate sidekick for managing state in your React apps. If you've ever been overwhelmed by passing props all over the place, Redux is here to save you from the chaos! 🦸♂...Discuss·10 likesReact
Tanmay Bhansaliadvance-tic-tac-toe.hashnode.dev·Nov 5, 2024Day 4: Building a Customizable Tic Tac Toe with Socket.io - Set Your Own Board Size and Play Online!In the previous three posts, I discussed the journey of developing a dynamic Tic-Tac-Toe game with multiplayer support. Here’s a brief recap: Day 1: I focused on the pass-and-play feature, implementing the core game logic and a customizable board si...Discuss·10 likesinterview