{"id":19982373,"url":"https://github.com/netlify/hydrogen-template","last_synced_at":"2026-02-19T15:35:51.068Z","repository":{"id":205239336,"uuid":"713549406","full_name":"netlify/hydrogen-template","owner":"netlify","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-29T21:59:10.000Z","size":1902,"stargazers_count":16,"open_issues_count":1,"forks_count":7,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-30T04:42:08.565Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hydrogen-remix-template.netlify.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netlify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-02T18:42:35.000Z","updated_at":"2026-01-29T21:59:17.000Z","dependencies_parsed_at":"2026-01-29T18:04:27.604Z","dependency_job_id":null,"html_url":"https://github.com/netlify/hydrogen-template","commit_stats":null,"previous_names":["ascorbic/hydrogen-storefront"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/netlify/hydrogen-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlify%2Fhydrogen-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlify%2Fhydrogen-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlify%2Fhydrogen-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlify%2Fhydrogen-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netlify","download_url":"https://codeload.github.com/netlify/hydrogen-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlify%2Fhydrogen-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29620144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T04:11:00.330Z","updated_at":"2026-02-19T15:35:51.036Z","avatar_url":"https://github.com/netlify.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hydrogen template: Skeleton\n\nHydrogen is Shopify’s stack for headless commerce. Hydrogen is designed to dovetail with [Remix](https://remix.run/), Shopify’s full stack web framework. This template contains a **minimal setup** of components, queries and tooling to get started with Hydrogen.\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/hydrogen-template)\n\n- [Check out Hydrogen docs](https://shopify.dev/custom-storefronts/hydrogen)\n- [Get familiar with Remix](https://remix.run/docs/)\n\n## What's included\n\n- Remix 2\n- Hydrogen\n- Shopify CLI\n- Configured deployment to Netlify, with Server-Side Rendering (SSR) via [Netlify Edge\n  Functions](https://docs.netlify.com/edge-functions/overview/)\n- ESLint\n- Prettier\n- GraphQL generator\n- TypeScript and JavaScript flavors\n- Minimal setup of components and routes\n\n## Getting started\n\nWe highly recommend using this template to deploy a Hydrogen site to Netlify.\n\n**Requirements:**\n\n- Node.js version 18.0.0 or higher\n- Netlify CLI 17.0.0 or higher\n\n```bash\nnpm install -g netlify-cli@latest\n```\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/hydrogen-template)\n\nTo create a new project, either click the \"Deploy to Netlify\" button above, or run the following command:\n\n```bash\nnpm create @shopify/hydrogen@latest -- --template https://github.com/netlify/hydrogen-template\n```\n\nThen follow the instructions in `.env.example` and you're ready to start developing.\n\n## Local development\n\n```bash\nnpm run dev\n```\n\n## Building for production\n\n```bash\nnpm run build\n```\n\n## FAQ and Troubleshooting\n\n## How do I configure my Hydrogen session / storefront client / customer account client / cart handler?\n\nSee `app/lib/context.ts` and the Hydrogen documentation.\n\n## How do I augment the Remix context?\n\nAdd your custom context to the object returned by the `createAppLoadContext` function in\n`app/lib/context.ts` and ensure the return type is updated (e.g. `HydrogenContext \u0026 {foo: string}`).\n\n### How do I configure a real Shopify store in local dev?\n\nSee `.env.example` and\n[these Shopify instructions](https://shopify.dev/docs/storefronts/headless/building-with-the-storefront-api/getting-started).\n\n### I get a 500 error on the `/accounts` pages. How do I configure real Shopify customer accounts in local dev?\n\nSee [these Shopify instructions](https://shopify.dev/docs/storefronts/headless/building-with-the-customer-account-api/hydrogen).\n\n### Static assets not loading in local dev\n\nIf your `.js` and `.css` files are failing to load in local development (with 404 responses), you\nmay be running into an issue that occurs when `netlify dev` is run after having run a build (via\n`netlify build`, `netlify serve`, `npm run build`, or `remix vite:build`). This is a known issue\nthat Netlify is working on.\n\nTo fix this, delete the conflicting built functions before running your dev server:\n\n```bash\nrm -rf .netlify/edge-functions*\nnpm run dev\n```\n\n### `shopify hydrogen preview` fails with `Cannot find module '@shopify/mini-oxygen'`\n\nThe `shopify hydrogen preview` command has a misleading name. It previews your site in a local\nsimulation of the Oxygen hosting platform. It therefore isn't compatible with a site intended to be\ndeployed to Netlify.\n\nInstead, use the [Netlify CLI](https://docs.netlify.com/cli/get-started/) (e.g. `netlify serve`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetlify%2Fhydrogen-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetlify%2Fhydrogen-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetlify%2Fhydrogen-template/lists"}