5/21/2025 at 7:53:20 PM
I'm on the dev team that built this. Happy to answer any questions!We essentially use web components as a templating language to dynamically generate a GraphQL query to Shopify. Then render the data as text nodes inside the web components. This is powerful because the components don't include shadow roots. So you can come with your own HTML and CSS.
Most web component libraries are opinionated about design, and give you many CSS custom properties or CSS parts to customize. We tried really hard to invert that, and instead give you the design control. Most of our web components just produce a text node, with no shadow root!
There's a few exceptions, like the cart for example, where it's easier to just have an out of the box component that does it all for you `<shopify-cart>`. Though...you can actually build the entire cart component with the lower level primitives!
by blittle
5/22/2025 at 1:47:03 AM
This looks great, glad to see this project and congrats on the launch. Having said that, how does this project fit in with the Shopify Hydrogen effort using Remix / React? There seems to be an ever growing number of ways to build a shopify storefront these days (ie, native templates, remix/hydrogen, web components, Shopify JS Buy SDK, etc.) so it's not clear what technology to "bet on" from a developer perspective.Separately, nice touch adding the refined LLM instructions, this looks like a nice pattern for other UI frameworks to follow.
by rbitar
5/22/2025 at 5:25:20 PM
Different tools for different users and different levels of control.by paulddraper
5/22/2025 at 5:15:39 PM
I'm excited to see more Web Component libraries in the wild eschewing the Shadow DOM. I don't think enough developers have yet caught the message that the Shadow DOM is optional and Web Components are simpler and especially simpler to style if they skip it.by WorldMaker
5/21/2025 at 8:38:40 PM
I'm a big fan of web components, and this seems like a very cool project. I'm curious about how it fits into the broader frontend ethos at Shopify. I remember the Shopify team being one of the earliest proponents of React Server Components, for example. Is the team still working in that direction as well, or does this represent a new direction org-wide?by calebkaiser
5/21/2025 at 8:43:50 PM
I'm also on the hydrogen team. Today we also shipped support for Hydrogen on React Router 7, which has experimental support for RSC: https://remix.run/blog/rsc-previewby blittle
5/21/2025 at 8:53:44 PM
Awesome! I appreciate all the open work your team does. A couple years ago, I was staffed on a project that was adopting RSC super early on, and I vividly remember crawling through Shopify blogs/code as one of the few solid resources available.by calebkaiser
5/21/2025 at 8:40:13 PM
This looks like a great fit for allowing people to monetize their Discourse forums, by having partners stores and plugging those instead of ads.Will build a quick poc integration. How can I contact you with feedback?
by xfalcox
5/21/2025 at 8:44:44 PM
I'm excited to see what you build! DM me on bluesky: https://bsky.app/profile/bretlittle.comby blittle
5/22/2025 at 3:23:15 AM
love the site and experience. i'm mostly curious how you pitched the project internally and got buy-in for the project. congrats on the launchby scottrogers86
5/22/2025 at 12:18:14 PM
How are these order annotated in Shopify admin? Thinking specifically about various types of partnerships? Could a flow automation be set up to: pay commission (for the influencer model), pay inverse wholesale pricing (for dropshippers), etc.by QuantumWanderer
5/21/2025 at 7:56:58 PM
This seems super powerful. Would you recommend that an app developer who is creating App Blocks for PLPs (Search, Collections, etc.) use these new Web Components instead of building everything themselves?by shooker435
5/21/2025 at 8:37:13 PM
This is primarily for embedding in 3p sites, Shopify already has liquid for hosted storefronts. As for search and collections, we don't quite yet have support for search and filters. Though we do support pagination.by blittle
5/21/2025 at 9:56:56 PM
Really cool! Curious to know what was your testing strategy for these?by vasusen
5/22/2025 at 12:27:43 AM
Lots of e2e testsby blittle
5/22/2025 at 6:19:25 AM
Makes sense. Which framework did you end up using for e2e testing (Rspec, Playwright, others)?by vasusen