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.
Ladle: The Story About Modules and Performance
Transcription
Hello everyone, my name is Vojta Miksu. I work at Uber as a web infrastructure engineer. And today I will tell you about a new open source tool that supercharges developing and testing your react components. This talk has four 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 first 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 is 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. That would block rendering in browsers and lead to really bad experiences. CommonJS was developed independently from the ECMA standards 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 is 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 CommonJS 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. That was a major and very slow part of Pepeg. Therefore, the dev server startup can be instant. Common bundling and compilation is still needed. A lot of existing libraries need to be converted from CommonJS. We also need to remove things like JSX and typescript. vite uses ESBuild and Rollup plugins for that. Let's compare Vepeg and vite startup process side by side. This is the old Vepeg approach. The codebase 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 module only when needed. It only needs to do a light preprocessing like stripping typescript types before sending these files back to browser. However, it doesn't matter how big your codebase 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 up vite to a test and use it as a foundation for an alternative solution to storybook. We built an open source 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.tsx. So let's create file welcome-stories.tsx. Stories are also just react components, but they need to be exported. So let's export StoryName 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 ladleserv. This immediately starts a vite 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 StoryName 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 color contrast is not great. 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. 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 dot 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. And 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 types. 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 that's explored from ladle and can be just simple passed 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. And 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. So when you set the default viewport, not only your story gets displayed in this viewport, but it also gets exported with it together in this file. So this can be again very useful for some further testing automation. So what is ladle? Ladle is vite plugin, react UI and CLI in one single package. It's a single dependency, so you will never run into versioning issues between multiple packages. It requires no initial configuration, but you can still customize things like fonts, add additional style sheets or fully access vite'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 rebundled 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 speed 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 are also much better when it comes to caching. There is also a trend to use other languages like rust and Go when compiling javascript. It's another great source of speed improvements. Please visit ladle.dev so you can experience what this new generation of tools can do, and thanks for listening.