Ok, I didn't know that. Thanks for the response!
btw, I've spent all day playing with Parcel and RSC, and I think it's amazing
Many projects, SPAs and even server node apps, could adopt RSC incrementally thanks to Parcel
@devongovett.bsky.social
I write javascript
Ok, I didn't know that. Thanks for the response!
btw, I've spent all day playing with Parcel and RSC, and I think it's amazing
Many projects, SPAs and even server node apps, could adopt RSC incrementally thanks to Parcel
Yeah pnpm is a bit strict about dependencies so you have to install @parcel/runtime-rsc into your project.
01.08.2025 23:33 β π 2 π 0 π¬ 1 π 0Yeah that's exactly what it does. If you actually disable it focus will be lost and screen readers will lose their place / no longer hear updates about what's happening. So you either want focus to remain on the button or move somewhere else that's relevant.
01.08.2025 19:25 β π 3 π 0 π¬ 2 π 0Yeah we've been blocked on having to still support old react versions, but maybe we could add it as a feature that only works in newer versions somehow.
01.08.2025 19:24 β π 3 π 0 π¬ 0 π 0There are some important considerations to how you set up the DOM structure and hide the text with css too. Detailed info in our docs: react-spectrum.adobe.com/react-aria/B...
01.08.2025 19:08 β π 5 π 0 π¬ 1 π 0Getting the accessibility right for pending buttons is actually kinda complicated too, which is why we have built in support for it in React Aria. Just swapping between text/spinner wonβt usually be announced by a screen reader, and you want the button to remain focusable (not disabled).
01.08.2025 19:07 β π 5 π 0 π¬ 2 π 0Yeah thereβs still a lot of web dev stuff on Twitter. Pretty much the only reason Iβm still on there. Itβs often more like self promotion than actual discussion but it does seem more active.
27.07.2025 22:46 β π 18 π 0 π¬ 0 π 0currently no
27.07.2025 19:51 β π 0 π 0 π¬ 0 π 0btw, all the diagrams in this article are rendered using graphviz in a React Server Component to generate SVG at build time. Super convenient.
27.07.2025 18:59 β π 42 π 2 π¬ 1 π 1Yeah I donβt want to throw anyone under the bus, especially since most of the other implementations arenβt official / complete yet. Next.js works basically like Parcel though. The others may be blocked on supporting a unified module graph.
27.07.2025 15:38 β π 4 π 0 π¬ 1 π 0Wrote an article about how React Server Components integrate with a bundler. It's a deep dive into how code splitting works, how RSCs eliminate network waterfalls, how environment directives like "use client" work, CSS loading, etc. Check it out! devongovett.me/blog/parcel-...
26.07.2025 23:40 β π 116 π 19 π¬ 5 π 1I think you should be able to just do `styled(RACComponent)`. And then you can use the data attributes to style it based on the state
24.07.2025 17:23 β π 1 π 0 π¬ 1 π 0yes, by default it triggers one "page" before coming into view (the video is really slowed down here so you can actually see the spinners). That can also be customized via the scrollOffset prop.
23.07.2025 21:27 β π 1 π 0 π¬ 1 π 0All React Aria Components now pass through global DOM events and attributes. This improves React Aria's interoperability with other libraries.
For example, you can now use a React Aria button with a Radix Dropdown.
Hopefully this helps make incrementally adopting React Aria much easier!
Our infinite scroll API is pretty cool. You render a special item at the end of your list that triggers its onLoadMore callback when scrolled into view.
This enables a list to have multiple sections from different APIs, or a tree to infinite scroll within each branch.
New React Aria release!
π Infinite scroll in ListBox, GridList, Table, & Tree
βοΈ React 19 actions form reset
π² Virtualized Tree drag and drop
π€ Opened API to DOM events β works better with other libraries
π DatePicker autocomplete
π And TONS more!
react-spectrum.adobe.com/releases/202...
like this github.com/parcel-bundl...
17.07.2025 05:29 β π 1 π 0 π¬ 0 π 0I would do pre-rendering in the "react-server" environment since it's running in node not in the browser. Just like the express server. Then import only "react-dom/server.edge" and "react-server-dom-parcel/client.edge" with {env: "react-client"}. Then you only need two environments.
17.07.2025 05:27 β π 0 π 0 π¬ 1 π 0Hmm if youβre requesting it in the βreact-clientβ environment youβre gonna get a browser polyfill since node builtins donβt exist there. During SSR, the same bundles that run in the browser will be run in Node (important for client references to work correctly). Thereβs no SSR-specific environment.
17.07.2025 05:17 β π 0 π 0 π¬ 1 π 0Very happy that Parcel helped enable this! π€©
17.07.2025 01:53 β π 39 π 2 π¬ 1 π 0Absolutely MASSIVE collection of beautifully designed and expertly crafted components built with React Aria. π€©
Everything from base components to entire marketing sections and dashboards. Comes with a matching Figma UI kit, CLI, themes, icons, and more.
Incredible.
www.untitledui.com/react
Not yet, I need to add one. Stay tuned here for now
14.07.2025 22:15 β π 1 π 0 π¬ 0 π 0Started writing an article about RSCs from a bundler integration perspective. Might end up being multiple parts though. I realized I needed to explain how code splitting works without RSCs first. Already getting kinda longβ¦
14.07.2025 04:06 β π 35 π 2 π¬ 1 π 0I think people are also hesitant to add Babel back into their build after just managing to remove it in many cases. I know the compiler isnβt really a Babel transform internally but it does add an extra parse/generate step, which can be non-trivial for large apps.
13.07.2025 16:11 β π 38 π 0 π¬ 4 π 0Yeah TS definitely has a very different use case than most apps. No worries, I was just curious.
07.07.2025 22:31 β π 0 π 0 π¬ 0 π 0Definitely agree, but I don't think this is one of those cases. This affects many real-world apps (whether it's a good idea to rely on or not), and that's why webpack/parcel currently wrap modules in many cases. The esbuild/rollup issues also have lots of upvotes/comments.
07.07.2025 21:48 β π 1 π 0 π¬ 1 π 0Curious if you tried destructuring imports and using module-local variables. Most exported values are not re-assigned so don't need the live-binding part of ESM. Could be slightly slower initialization, but at least no repeated object access in hot paths.
07.07.2025 21:06 β π 0 π 0 π¬ 1 π 0Sure. I just think correctness should be the default, and if you want to do potentially unsafe optimizations that should be opt-in. That's already the case for many other optimizations that minifiers perform for example.
07.07.2025 16:44 β π 3 π 0 π¬ 1 π 0True. An alternative could be to destructure exports that are never re-assigned at the top of the module where imported. That could have a similar benefit in many cases.
07.07.2025 16:11 β π 1 π 0 π¬ 0 π 0There are other ways to get similar benefits. Most exports arenβt re-assigned so simply destructuring when imported could work. Priority of constituencies applies to API design and specs, not at the expense of correctness.
07.07.2025 16:05 β π 1 π 0 π¬ 1 π 0