Ayusharpcoderreacttonext.hashnode.dev路Jan 15, 2025Leveraging React Server Components: The Future of React ApplicationsWhat Are React Server Components? React Server Components (RSC) are a new experimental feature introduced by React that allows developers to render parts of their app on the server rather than the client. This brings a significant improvement to how ...Web Development
ayoola lekanoluremi.hashnode.dev路Jan 14, 2025Incremental Static Regeneration & Partial Prerendering in Next.js: A Deep DiveReact, along with its powerful framework Next.js, has revolutionized web development by offering cutting-edge techniques for optimizing website performance and user experience. Combining the strengths of client-side and server-side rendering, Next.js...2 likesNext.js
SciChartreact-charting.hashnode.dev路Jan 14, 2025React Charts with SciChart.js: Introducing scichart-react3rd January, 2024 TLDR: In this blog post we introduce a brand new open source library called scichart-react (npm, GitHub). This makes it easy to create stunning high-performance charts and data visualizations in React. SciChart-React is an early pr...React
Reme Le Haneremelehane.dev路Jan 13, 2025Dynamically Render Components Based on ConfigurationWhen building apps, you often encounter situations where you need to render different components or layouts based on data. Instead of using a lot of if-else or switch statements, you can use a configuration-driven approach for cleaner and more scalab...React
Muhammad Abubakarabubakarwebdev.hashnode.dev路Jan 13, 2025React 19 Updates: Complete Look at New Features with ExamplesHere is the list of the all newly added features in the React 19: React Compiler Server Components React 19 <form> Server Actions New Hooks: useActionState, useFormStatus, useOptimistic New API: use Existing Improvements: Ref as a Prop, ref ca...4 likes路35 readsReact
Piyush Kumarpiyushkumar-blog.hashnode.dev路Jan 11, 2025Setup of React project with Vite and TailwindCSSTo set up a React project with Vite, follow these steps: Prerequisites: Ensure you have Node.js installed on your system. Create Vite Project Open your terminal and run: npm create vite@latest my-react-app --template react This command initializes ...39 readsReact
SINAPTIAsinaptia.hashnode.dev路Jan 8, 2025This week in #devs - Issue #4Our #devs channel is a cross-project, shared space where the entire dev team of SINAPTIA can ask questions, share opinions, and discuss interesting articles or tech they come across. The idea is to post a curated extract of what happens there every w...debugging
Polar The Explorerlogicbricks.hashnode.dev路Jan 7, 2025Isomorphic Development and ReactJS 馃殌1. SPA Challenges Single Page Applications (SPAs) provide great user experience, but they face challenges with SEO (Search Engine Optimization) and initial page load performance. Traditional SPAs rely on client-side rendering, which can lead to slo...1 likejs
Awaiskazmi066.hashnode.dev路Jan 5, 2025Lub-e-lubab of state management in ReactManaging state is one of the trickiest parts of building React applications, and it鈥檚 easy to over-engineer solutions in the pursuit of "doing it right." While global state often gets the spotlight, the reality is that most state in an app doesn鈥檛 ne...109 readsReact
Shivam barthwalshivamcoder.hashnode.dev路Jan 2, 2025Frontend Unlocked: React BasicsReact has revolutionized how we build user interfaces. Its component-driven architecture, efficient state management, and powerful hooks make it a must-learn library for every frontend developer. In this post, we'll dive into React basics, covering c...React