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.