Smit Desaismitd.hashnode.dev·Apr 2, 2024Igniting ⚡️ our React App with ParcelWhy your React App is so FAST (just like the Flash guys from TBBT above😜) & Optimised? Is it just React which does all this? The Answer is NO. Let's see how ✍🏻 Our Production code, we need it to be: Minified (removing comments, etc) Compressed b...Discuss·45 readsReact
Smit Desaismitd.hashnode.dev·Mar 29, 2024Core React JS FundamentalsImporting React via CDN Links (content delivery network) Websites where React is hosted and we're just pulling React into our project via these CDN links. Once these links are included in project => Now our project has superpowers of React inside i...Discuss·1 like·88 readsReact
Harshitha Solai Varadarajanharshithasv.hashnode.dev·Jan 9, 2024Resolving CORS Restriction using Node.js: A Guide for Working with Third-Party APIsAs front-end developers, we may have encountered the CORS (Cross-Origin Resource Sharing) issue when trying to access an API from a different domain. This issue arises when the browser blocks requests made from a different domain, preventing our appl...Discuss·1 like·62 readsCORS
Keyur Chaudharikeyurchaudhari.hashnode.dev·Sep 14, 2023Simplified Introduction to React FundamentalsHere are some insights from the "Namaste React" series: A React element is an object that gets converted by the React render method, allowing it to be displayed as HTML on a web page. React is a library, not a full-fledged framework. Under the hood, ...Discuss·42 readsReact
Abhishek Bommenaabhishekbommena.hashnode.dev·Jul 19, 2023Understanding CDNWhat is CDN? CDN stands for Content Delivery Network. It is a distributed network of servers strategically placed in various geographical locations to deliver web content and other digital assets to users more efficiently. CDNs work by caching and st...Discuss·130 readsnamastereact
Yashashri Bongulwaryashashri.hashnode.dev·May 27, 2023Why JSX ?React.createElement() when we create element using React.createElement() React converts it into object and reactDOM while rendering converts it into HTML DOM. eg - const heading = React.createElement( "h1", { id: "titleID", cl...Discuss·29 readsReact
Yashashri Bongulwaryashashri.hashnode.dev·May 25, 2023Trying To Understand React - Part 1What is React ? React is an open-source JavaScript library that is used for building user interfaces. It was developed by Facebook and released in 2013 It allows developers to create reusable UI components and efficiently update and render them when ...Discuss·34 readsnamastereact
Shreyasblogorithm.hashnode.dev·Apr 12, 2023Just another blog attempting to simplify Redux toolkit for youAs a beginner, I tried to understand redux on my own through docs and blogs. I tried. Eventually, I learned it from Akshay Saini's boot camp called Namaste React and I have been very grateful for it. I have taken some amazing explanations from there ...Discuss·116 readsReact
PrinceKr-Paswanprincekr-paswan.hashnode.dev·Apr 4, 2023Day one of learning React.jsWelcome to the world of React! In this blog post, we'll be covering the basics of React and how to get started with it. If you're new to React, you may be wondering what it is and why it's so popular. React is a JavaScript library for building user i...Discuss·1 like·128 readsJavaScript
Mrityunjay Singhmrutunjays.hashnode.dev·Mar 17, 2023Understanding React Virtual DOM in 5 MinutesVirtual DOM React JS: A Comprehensive Guide As websites and web applications continue to become more complex, developers are always looking for ways to improve the performance of their code. One solution that has gained popularity in recent years i...Discuss·1 like·59 readsReact