Navigating Modern Frontend Innovations

Rate this content
Bookmark

Between SolidJS, Qwik and React, there's been significant innovation in the frontend development landscape. Mrina Sugosh, DevRel Manager @ CK, aims to tie it all together and assist React developers in embracing modern approaches. This talk is designed to offer valuable insights for developers keen on navigating front-end trends and making well-informed technology decisions for their projects.

This talk has been presented at React Summit 2024, check out the latest edition of this React Conference.

FAQ

Renessa Ghosh is a developer advocate at CKDedder, with a background in full-stack engineering and developer marketing. She has worked at IBM Cloud and DigitalOcean before joining CKDedder. She loves to travel, with her most recent trip being to Iceland.

The talk focuses on navigating modern front-end innovations, specifically discussing the frameworks React, Solid, and Quick, and how to choose the best one for your project.

React stands out due to its component-based architecture, virtual DOM, extensive and evolving ecosystem, wide adoption and community support, integration with modern tools, and forward-looking features like concurrent mode.

SolidJS differs from React primarily through its fine-grained reactivity system, which tracks changes at the level of individual pieces of state, and by doing away with the virtual DOM, resulting in less overhead and more efficient memory usage.

Quick.js stands out for its resumability, optimized server-side rendering, incremental delivery, and focus on SEO and performance. It allows components to be paused and resumed, optimizes for minimal initial load, and defers non-critical code execution to enhance load times.

React has a high performance but with some overhead due to its virtual DOM. SolidJS offers very high performance with fine-grained reactivity. Quick provides extremely high performance due to its on-demand loading and minimal initial load size.

When choosing between these frameworks, consider performance, bundle size, and developer experience. React has the best developer experience due to its maturity and ecosystem. SolidJS and Quick offer better performance and smaller bundle sizes but have smaller communities and steeper learning curves.

The virtual DOM in React allows for efficient UI updates by creating a virtual representation of the DOM and only re-rendering components that need updating, reducing direct interaction with the actual DOM.

Fine-grained reactivity in SolidJS tracks changes at the level of individual pieces of state, allowing precise UI updates and avoiding unnecessary re-renders, enhancing performance and efficiency.

Incremental delivery in Quick.js means that after the initial page load, further interactions dynamically load more features and data on-demand, optimizing the user experience based on their actual interaction with the application.

Mrina Sugosh
Mrina Sugosh
16 min
18 Jun, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Today's Talk explores modern front-end frameworks React, SolidJS, and Quick. React's popularity is attributed to its component-based architecture and extensive ecosystem. SolidJS distinguishes itself with fine-grained reactivity, efficient memory usage, and developer-friendly API. Quick (QUIC) stands out for its fast load times, resumability, server-side rendering, and prioritization of developer experience. QUIC's on-demand loading feature improves initial page load time by deferring non-critical code execution.

1. Introduction

Short description:

Hi, everyone. Today we're going to talk about navigating modern front-end innovations and a few frameworks: React, Solid, and Quick. I'm Renessa Ghosh, a developer advocate at CKDedder. Let's quickly go through these frameworks and discuss their unique features and benefits.

Hi, everyone. I'm Renessa Ghosh. I am a developer advocate at CKDedder, and today we're going to talk about navigating modern front-end innovations and whatever that means in this world of rapidly changing frameworks. Specifically, we're going to talk about a few frameworks, React, Solid, and Quick.

But before that, let me tell you a little bit more about myself. So as I said, I'm Renessa Ghosh. I'm a developer as well as a marketer. I started my career off at IBM Cloud as a full-stack engineer. Then I moved on to developer marketing at DigitalOcean, and now I'm a developer at CKEdder. If you don't remember anything about me, just remember that I love to travel, and the country that I traveled to most recently was Iceland. So enough about me.

Today's talk. Today's talk, it's a lightning talk, so we're going to go quickly through three different things. React, we're going to talk about that powerful ecosystem that we all know and love, right? This entire summit is called React Summit. Then we're going to talk about Solid.js. It redefined this thing called reactivity, fine-grained reactivity. We're going to talk a little bit about that, and then we're going to talk about Quick.js where the big kind of innovation around that framework was optimizing these initial load times. It was a huge problem that they solved. And finally, we're going to say, what's the best decision for your project? And I'm going to give you a little bit of a framework to get started on. So let's get started.

2. React and SolidJS

Short description:

React is more than just a library, it's a whole ecosystem. It has a component-based architecture, virtual DOM, and an extensive and evolving ecosystem. React's popularity stems from its wide adoption, community support, integration with modern tools, and forward-looking features like concurrent mode. SolidJS, similar to React, has fine-grained reactivity as one of its great features.

React, it's definitely more than just a library today. It's a whole ecosystem. It's a whole community, right? It has been at the forefront of front-end development, according to me, for years, as long as I remember front-end development. And the things that really make it stand out are these things like virtual DOM and component-based architecture, really big innovations for its time.

So six things that I believe make React stand out, the component-based architecture. So React's design really revolves around reusable components, making it easier to manage and scale these large applications. Virtual DOM, that's pretty great because it uses this virtual representation of the DOM instead of directly interacting with the DOM like your typical HTML and JS and stuff do, and allows it to efficiently update the UI but only re-rendering the components that you actually need, right? And finally, what it does is it has this extensive ecosystem or evolving ecosystem, whatever you want to call it. But from solutions like Redux to Mobex to React Router, even things like Create React App, which of course now is degraded, and Next.js for server-side rendering, this ecosystem is just evolving, and it's so vast and so versatile that almost any problem that you might have with any type of web application has already been solved for by the community or by your React maintainers already.

So that kind of leads me to this wide adoption and community support. React's popularity really has stemmed from the fact that it has such a huge community and a rich ecosystem of library and tools. The adoption is so great, and the community provides so many wealth and resources from open source projects to professional support that just really enhance developer productivity and learning. And then finally, there's some things like it does integrate with modern tools. It's not just this old framework that sits in the back. Today, React integrates with Next.js and offers this comprehensive solution with tools like Vite, for example. Right? So it really is integrating into your modern tools, and of course, forward-looking. I think there was this new thing called the concurrent mode, which allows React to actually prepare multiple versions of the UI at the same time, which are very new and great things that are happening in React. So it is a great framework, right? And I want to make sure I'm saying that here. And let's look at an example of what a component typically looks like in React. You have a function component, you have time display over here, which is just a counter that updates the seconds. And here I have time and set time, and it keeps updating it with the use date. And 1,000 just tells me that every second I want to update my time and set the time to the new date and then keep clearing the interval as I'm doing this. And then I put it into a div, that piece of code, and it's all good to go. Right? And this kind of looks really simple, but what we're really doing here is handling this dynamic data, like time, very efficiently by just kind of putting it into this function, hooking it up with state, and letting it run. So that is really powerful. What we just did is a very simple piece of code and logic, but the separation of concerns and the ability to handle this dynamic data efficiently is really what sets React apart.

Now, let's think about SolidJS, right? We just talked about React and how great it is. SolidJS is rapidly, like, gaining popularity, whether it's Reddit, Twitter, everywhere. And it honestly is very similar in my head to React, because it adopts this reactive model that differs from React, but the code looks very similar, right? So, what makes this great? These are the six things. For SolidJS, there's something called fine-grained reactivity. I talked about this at the beginning.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

A Guide to React Rendering Behavior
React Advanced Conference 2022React Advanced Conference 2022
25 min
A Guide to React Rendering Behavior
Top Content
This transcription provides a brief guide to React rendering behavior. It explains the process of rendering, comparing new and old elements, and the importance of pure rendering without side effects. It also covers topics such as batching and double rendering, optimizing rendering and using context and Redux in React. Overall, it offers valuable insights for developers looking to understand and optimize React rendering.
Speeding Up Your React App With Less JavaScript
React Summit 2023React Summit 2023
32 min
Speeding Up Your React App With Less JavaScript
Top Content
Watch video: Speeding Up Your React App With Less JavaScript
Mishko, the creator of Angular and AngularJS, discusses the challenges of website performance and JavaScript hydration. He explains the differences between client-side and server-side rendering and introduces Quik as a solution for efficient component hydration. Mishko demonstrates examples of state management and intercommunication using Quik. He highlights the performance benefits of using Quik with React and emphasizes the importance of reducing JavaScript size for better performance. Finally, he mentions the use of QUIC in both MPA and SPA applications for improved startup performance.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
Watch video: React Concurrency, Explained
React 18's concurrent rendering, specifically the useTransition hook, optimizes app performance by allowing non-urgent updates to be processed without freezing the UI. However, there are drawbacks such as longer processing time for non-urgent updates and increased CPU usage. The useTransition hook works similarly to throttling or bouncing, making it useful for addressing performance issues caused by multiple small components. Libraries like React Query may require the use of alternative APIs to handle urgent and non-urgent updates effectively.
The Future of Performance Tooling
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Today's Talk discusses the future of performance tooling, focusing on user-centric, actionable, and contextual approaches. The introduction highlights Adi Osmani's expertise in performance tools and his passion for DevTools features. The Talk explores the integration of user flows into DevTools and Lighthouse, enabling performance measurement and optimization. It also showcases the import/export feature for user flows and the collaboration potential with Lighthouse. The Talk further delves into the use of flows with other tools like web page test and Cypress, offering cross-browser testing capabilities. The actionable aspect emphasizes the importance of metrics like Interaction to Next Paint and Total Blocking Time, as well as the improvements in Lighthouse and performance debugging tools. Lastly, the Talk emphasizes the iterative nature of performance improvement and the user-centric, actionable, and contextual future of performance tooling.
Optimizing HTML5 Games: 10 Years of Learnings
JS GameDev Summit 2022JS GameDev Summit 2022
33 min
Optimizing HTML5 Games: 10 Years of Learnings
Top Content
PlayCanvas is an open-source game engine used by game developers worldwide. Optimization is crucial for HTML5 games, focusing on load times and frame rate. Texture and mesh optimization can significantly reduce download sizes. GLTF and GLB formats offer smaller file sizes and faster parsing times. Compressing game resources and using efficient file formats can improve load times. Framerate optimization and resolution scaling are important for better performance. Managing draw calls and using batching techniques can optimize performance. Browser DevTools, such as Chrome and Firefox, are useful for debugging and profiling. Detecting device performance and optimizing based on specific devices can improve game performance. Apple is making progress with WebGPU implementation. HTML5 games can be shipped to the App Store using Cordova.
Power Fixing React Performance Woes
React Advanced Conference 2023React Advanced Conference 2023
22 min
Power Fixing React Performance Woes
Top Content
Watch video: Power Fixing React Performance Woes
This Talk discusses various strategies to improve React performance, including lazy loading iframes, analyzing and optimizing bundles, fixing barrel exports and tree shaking, removing dead code, and caching expensive computations. The speaker shares their experience in identifying and addressing performance issues in a real-world application. They also highlight the importance of regularly auditing webpack and bundle analyzers, using tools like Knip to find unused code, and contributing improvements to open source libraries.

Workshops on related topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
Building WebApps That Light Up the Internet with QwikCity
JSNation 2023JSNation 2023
170 min
Building WebApps That Light Up the Internet with QwikCity
Featured WorkshopFree
Miško Hevery
Miško Hevery
Building instant-on web applications at scale have been elusive. Real-world sites need tracking, analytics, and complex user interfaces and interactions. We always start with the best intentions but end up with a less-than-ideal site.
QwikCity is a new meta-framework that allows you to build large-scale applications with constant startup-up performance. We will look at how to build a QwikCity application and what makes it unique. The workshop will show you how to set up a QwikCitp project. How routing works with layout. The demo application will fetch data and present it to the user in an editable form. And finally, how one can use authentication. All of the basic parts for any large-scale applications.
Along the way, we will also look at what makes Qwik unique, and how resumability enables constant startup performance no matter the application complexity.
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
React Performance Debugging
React Advanced Conference 2023React Advanced Conference 2023
148 min
React Performance Debugging
Workshop
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
High-performance Next.js
React Summit 2022React Summit 2022
50 min
High-performance Next.js
Workshop
Michele Riva
Michele Riva
Next.js is a compelling framework that makes many tasks effortless by providing many out-of-the-box solutions. But as soon as our app needs to scale, it is essential to maintain high performance without compromising maintenance and server costs. In this workshop, we will see how to analyze Next.js performances, resources usage, how to scale it, and how to make the right decisions while writing the application architecture.
Maximize App Performance by Optimizing Web Fonts
Vue.js London 2023Vue.js London 2023
49 min
Maximize App Performance by Optimizing Web Fonts
WorkshopFree
Lazar Nikolov
Lazar Nikolov
You've just landed on a web page and you try to click a certain element, but just before you do, an ad loads on top of it and you end up clicking that thing instead.
That…that’s a layout shift. Everyone, developers and users alike, know that layout shifts are bad. And the later they happen, the more disruptive they are to users. In this workshop we're going to look into how web fonts cause layout shifts and explore a few strategies of loading web fonts without causing big layout shifts.
Table of Contents:What’s CLS and how it’s calculated?How fonts can cause CLS?Font loading strategies for minimizing CLSRecap and conclusion