Hydrogen Everywhere: Dashboards, Portals, and Sidecar Apps
Introduction
Hydrogen is marketed as a storefront framework for Shopify. But under the hood, itβs just Remix + React β which means it can power more than PDPs and PLPs.
Forward-thinking brands are extending Hydrogen to build dashboards, B2B portals, loyalty apps, and multi-tenant SaaS tools that live alongside their storefronts. This post explores those opportunities.
Why Extend Hydrogen Beyond Storefronts?
- π Shared design system β storefront + portal feel consistent.
- π Oxygen hosting β global edge performance applies everywhere.
- π οΈ API-first flexibility β pull data from Shopify + external sources.
- π³ Unified identity β bridge Shopify customer auth with Firebase/Supabase.
Use Cases
1. Loyalty Dashboards
- Customers view points, rewards, and redemption history.
- Built as React components with Storefront API + loyalty backend.
2. Wholesale/B2B Portals
- Login-protected portals for bulk ordering.
- Custom pricing, order history, and account management.
3. Multi-Tenant SaaS Tools
- Agencies build apps for multiple merchants.
- Example: analytics dashboards or personalization engines.
- Tenant isolation handled at data layer (Postgres/Firestore).
4. Sidecar Apps
- Content portals, product configurators, event microsites.
- Share code + hosting infra with storefront.
Example: Wholesale Portal on Hydrogen
export async function loader({ request }) { const customer = await requireAuth(request); const orders = await getWholesaleOrders(customer.id); return json({ customer, orders }); }
π Shopify auth + external wholesale API β unified portal.
Case Example: Agency Build
- Agency created Hydrogen storefront + wholesale portal for apparel brand.
- Shared design system + component library.
- Hosted both on Oxygen.
- Outcome: brand reduced TCO, avoided separate portal tech stack.
Guardrails
- β Keep tenant isolation strict in multi-merchant apps.
- β Use hybrid auth (Shopify + Firebase) for secure login.
- β Avoid loading Admin API from Oxygen workers.
- β Treat portals as first-class apps with separate QA.
Conclusion
Hydrogen isnβt just for storefronts. With its React/Remix core and Oxygen hosting, itβs a foundation for dashboards, portals, and SaaS-style sidecar apps.
Donβt think of Hydrogen as a storefront β think of it as a commerce app framework.