Ladle: The Story About Modules and Performance

Rate this content
Bookmark
Slides

The bigger they are, the slower it gets. I am talking about your applications and the bundling process. Fortunately, there might a be better future - the one without bundlers. This talk will be about JavaScript modules, Vite and how we built Ladle - a speedy tool for your React stories.

16 min
24 Oct, 2022

Video Summary and Transcription

Hello everyone, my name is Wojta Mikšu. I work at Uber as a web infrastructure engineer. Today, I will tell you about a new open tool that supercharges developing and testing your React components. This talk covers the history of JavaScript modules, the introduction of Vite and Ladle, and future predictions. Ladle is an open-source tool built on top of Vite for developing and testing React components through stories. It offers features like different viewports, component variations, event handler logging, theme switching, and more. Ladle has received positive feedback and shows improvements in dev server startup and hot module replacement.

Available in Español

1. Introduction to Open Tool for React Components

Short description:

Hello everyone, my name is Wojta Mikšu. I work at Uber as a web infrastructure engineer. Today, I will tell you about a new open tool that supercharges developing and testing your React components. This talk has 4 sections. The first is a short history lesson about Javascript features we've been missing. Then we talk about Javascript modules, Vite, and Ladle. Finally, we will wrap this up with some future predictions. JavaScript was missing a concept of modularization. Node.js adopted CommonJS, but it has weaknesses for browsers.

Hello everyone, my name is Wojta Mikšu. I work at Uber as a web infrastructure engineer, and today I will tell you about a new open tool that supercharges developing and testing your React components.

This talk has 4 sections. The first is a short history lesson about Javascript features we've been sorely missing for a long time. Then we talk about Javascript modules, also known as ES6 modules or ESM. The third section introduces Vite, a new type of bundler, followed by an introduction of Ladle, a tool we built on top of Vite. And finally, we will wrap this up with some future predictions.

Do you remember what 1995 browsers looked like? I don't, but they were very different for sure. It's not surprising that JavaScript was missing some features when it was introduced. The one feature that's relevant to this talk is the way how JavaScript is loaded into browsers. You have to use the script tag. The code itself can be inlined or point to a file. This was fine 15, 10 years ago when JavaScript was used to add a bit of interactivity. But when we build modern frontend applications, it causes some serious issues. The files are loaded and executed synchronously and their order matters. Top level variables end up in the global scope, so it's easy for two unrelated libraries to cause naming collisions. Every time you create a new file, you have to load it through an additional script tag and bind it through the global scope. There's no easy way to eliminate unused code either.

JavaScript was missing a concept of modularization. This was especially a big problem for server-side JavaScript known as Node.js. Some better system for splitting and encapsulating code was badly needed. So, Node.js adopted CommonJS. This syntax should be very familiar to anyone that touched JavaScript in recent years. It addresses a lot of issues, but not all of them. It introduces a concept of code providers and consumers. It's also a whole philosophy and it was used to create the biggest package registry for code sharing called npm. It enables dynamic code loading. However, there are some major weaknesses that make it unusable for browsers. For example, there are file system references like the usage of dirname. But the biggest issue is that module resolution and loading needs to be done synchronously.

2. Introduction to JavaScript Modules and Vite

Short description:

CommonJS was a better system than JavaScript ever had, allowing developers to split code into modules without worrying about browser support. JavaScript modules were introduced as an official standard, supported by all modern browsers and runtimes. They work asynchronously, load additional modules when needed, and can be easily tree shaken. Despite some compatibility issues, it's clear that JavaScript modules are the future. Vite is a new development environment that takes advantage of unbundled JavaScript modules, resulting in instant dev server startup. Vite uses ESbuild and Rollup plugins to convert existing libraries from CommonJS and remove unnecessary dependencies like JSX and TypeScript.

That would block rendering in browsers and lead to really bad experiences. CommonJS was developed independently from the ECMAStandards party, so it never became the core part of JavaScript. However, it was still a better system than JavaScript ever had, and developers wanted to use server code in their frontend applications. So the bundlers like Webpack were introduced. Webpack can analyze and resolve all CommonJS modules before creating a single bundled file that serves two browsers. This was a big win-win. Developers can use CommonJS to split code into modules and don't have to worry about browser support in it.

But we were still missing an official standardized way that would work in browsers and other runtimes without additional tooling. JavaScript modules were introduced. Today, they are supported by all modern browsers and runtimes. You can load them by setting the type attribute to module. And the best part is that browsers understand import-export syntax and load additional modules when needed. Modules work asynchronously and don't prevent pages being interactive. There's a promise API to import modules dynamically. The code can be easily tree shaken. Only the bits you use need to be loaded. It works everywhere across all browsers and environments. And it is an official standard now.

Don't get me wrong. There are still some issues when it comes to compatibility with common JS and existing ecosystem, so the adaption can be sometimes cumbersome. However, it's clear that this is the future of JavaScript.

So what is Vite? It's a new development environment built on the fact that JavaScript modules don't need to be bundled before being served to browsers. It was a major and very slow part of Webpack. Therefore, the dev server startup can be instant. Some bundling and compilation is still needed. A lot of existing libraries need to be converted from common JS. We also need to remove things like JSX and TypeScript. Vite uses ESbuild and Rollup plugins for that. Let's compare Webpack and Vite startup process side-by-side. This is the old Webpack approach.

3. Introduction to Ladle for React Component Testing

Short description:

The code base needs to be parsed and modules resolved before creating a bundle. Vite starts the server immediately and serves the entry module to the browser. Ladle is an open-sourced tool built on top of Vite for developing and testing React components through stories. It provides a UI for navigating and testing different stories, and also includes accessibility checks and responsive design testing.

The code base needs to be all parsed and all modules resolved before creating a bundle. Only then the server can be started and the bundle served. The bigger your application gets, the longer the startup time is.

On the other hand, Vite starts the server immediately and serves the entry module to the browser. Since the browser understands following imports, it loads additional modules only when needed. Vite only needs to do a light preprocessing, like stripping typescript types, before sending these files back to the browser. However, it doesn't matter how big your code base is, the server always starts instantly and incremental rebuilds also stay very, very fast.

We love these new performance benefits, so it made sense to put Vite to a test and use it as a foundation for an alternative solution to storybook. We built an open-sourced tool called Ladle. A tool for developing and testing React components through stories, built from ground up on top of Vite.

Let's do a demo. We are starting with an empty folder, so let's initialize our project. We also need to add some dependencies as react, react-dom and ladle. By default Ladle is looking for the folder source. And specifically looks for files ending with .stories.dsx. So let's create file welcome-stories.dsx.

Stories are also just React components, but they need to be exported. So let's export story name first, that exports a heading. Of course this could be like any React component, for example a component from your design system. And now we can start Ladle with command ladleserve. This immediately starts a v8 dev server and this is the Ladle's UI. On the left side you can find your component and on the right side there's a navigation listing all discovered stories. By default the file names and the export names are used to create this navigation. But this can be also changed through the code through parameters story name and export default title.

Let's add some additional stories to demonstrate other features. So this story has a button that's not very accessible. As you can see the call contrast is not great. You can write accessibility, you can run accessibility check with X by clicking on this icon. And now X tells us there is one violation and it gives us details so we can debug it and fix it. Another feature is useful when testing responsiveness and responsive design.

4. Introduction to Ladle Features

Short description:

Ladle allows you to set different viewports and test different sizes. It provides controls for displaying and testing variations of a single component. It also offers features for logging event handlers, switching themes, previewing source code, and exporting metadata. Ladle is a single dependency package that combines a weed plugin, ReactUI, and CLI.

It allows you to set different viewports and test different media queries. Through this add-on, you can change the viewport and test different sizes. You can also set a default viewport size through the parameter .meta and width.

Another feature is useful when you want to display and test different variations of a single component. In this case, we are changing the value of size. This feature is called controls and right now we can change this one variable called size and we can pick from three different values. As you can see, even without touching the code, we can see different variations. And this is how you set it up in the code through the API called archetypes. You define what variables you want to make dynamic, you define the options and then this gets passed as a prop into the story itself when it can be used inside of your component. There are other control types you can use like booleans, strings, radios. So this is very flexible for things like design systems when you want to display different variations of a single component, but you don't want to create multiple stories.

Another feature is great for logging event handlers. So, for example, this button is using action handler and once we start clicking on it, you get this notification and it shows you what event was fired and its details. The action is a function as exploited from Nadl and can be just simple pass to your handlers. And there are some other features you can switch between light and dark theme. You can switch to full screen. You can switch between left to right and right to left. You can also preview the source code of the story. It highlights the specific story and lines of code. It also shows the location of the story. And finally, Ladle exposes endpoint meta.json. This gives you a structured information about what stories are in your instance. This can be extremely useful for further automation and testing. For example, we use this file to run a playwright script that opens each URL and takes a snapshot. Then we can use it for visual snapshot testing. As you can see, this metadata also exports information like the width. When you set the default viewport, not only does your story get displayed in this viewport, but it also gets exported with it, together in this file. This can be very useful for further testing automation.

What is ladle? Ladle is weed plugin, ReactUI and CLI in one single package. It's a single dependency, so you will never run into versioning issues between multiple packages.

5. Introduction to Ladle Benefits and Future Trends

Short description:

It requires no initial configuration and fully supports component story format. It can be customized and works as a drop-in replacement for Storybook. Ladle has received great feedback from the community and has shown significant improvements in dev server startup and hot module replacement. The future of frontend tooling is heading towards modules ruling everything, allowing us to skip heavy processing and leverage browser capabilities for module resolution and caching. Using other languages like Rust and Go for JavaScript compilation is also a trend that brings speed improvements.

It requires no initial configuration, but you can still customize things like fonts, add additional stylesheets or fully access weed's configuration. It fully supports component story format and works as a drop-in replacement of storybook.

It also supports different monorepo setups and has a great programmatic API, so it can be re-bundled as a part of your library. It was released earlier this year and so far it got great feedback from the community. We've been using it for many internal and public projects and saw sometimes even 10x improvements when it comes to starting dev servers and hot module replacement.

So where is the frontend tooling heading now? It's pretty clear that modules are not going anywhere and over time they will rule everything. This is great for our tooling. We can skip some heavy processing before sending our code to browsers. Browsers can do the module resolution for us. They're also much better when it comes to caching. There's also a trend to use other languages like Rust and Go when compiling JavaScript. That's another great source of speed improvements.

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

React Advanced Conference 2022React Advanced Conference 2022
25 min
A Guide to React Rendering Behavior
Top Content
React is a library for "rendering" UI from components, but many users find themselves confused about how React rendering actually works. What do terms like "rendering", "reconciliation", "Fibers", and "committing" actually mean? When do renders happen? How does Context affect rendering, and how do libraries like Redux cause updates? In this talk, we'll clear up the confusion and provide a solid foundation for understanding when, why, and how React renders. We'll look at: - What "rendering" actually is - How React queues renders and the standard rendering behavior - How keys and component types are used in rendering - Techniques for optimizing render performance - How context usage affects rendering behavior| - How external libraries tie into React rendering
React Summit 2023React Summit 2023
32 min
Speeding Up Your React App With Less JavaScript
Top Content
Too much JavaScript is getting you down? New frameworks promising no JavaScript look interesting, but you have an existing React application to maintain. What if Qwik React is your answer for faster applications startup and better user experience? Qwik React allows you to easily turn your React application into a collection of islands, which can be SSRed and delayed hydrated, and in some instances, hydration skipped altogether. And all of this in an incremental way without a rewrite.
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
React 18! Concurrent features! You might’ve already tried the new APIs like useTransition, or you might’ve just heard of them. But do you know how React 18 achieves the performance wins it brings with itself? In this talk, let’s peek under the hood of React 18’s performance features: - How React 18 lowers the time your page stays frozen (aka TBT) - What exactly happens in the main thread when you run useTransition() - What’s the catch with the improvements (there’s no free cake!), and why Vue.js and Preact straight refused to ship anything similar
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Our understanding of performance & user-experience has heavily evolved over the years. Web Developer Tooling needs to similarly evolve to make sure it is user-centric, actionable and contextual where modern experiences are concerned. In this talk, Addy will walk you through Chrome and others have been thinking about this problem and what updates they've been making to performance tools to lower the friction for building great experiences on the web.
JSNation 2023JSNation 2023
26 min
When Optimizations Backfire
Top Content
Ever loaded a font from the Google Fonts CDN? Or added the loading=lazy attribute onto an image? These optimizations are recommended all over the web – but, sometimes, they make your app not faster but slower.
In this talk, Ivan will show when some common performance optimizations backfire – and what we need to do to avoid that.

Workshops on related topic

React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
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 🤐)
JSNation 2023JSNation 2023
170 min
Building WebApps That Light Up the Internet with QwikCity
Featured WorkshopFree
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.
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
- 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 Advanced Conference 2023React Advanced Conference 2023
148 min
React Performance Debugging
Workshop
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 🤐)
Vue.js London 2023Vue.js London 2023
49 min
Maximize App Performance by Optimizing Web Fonts
WorkshopFree
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
React Summit 2022React Summit 2022
50 min
High-performance Next.js
Workshop
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.