Requirements:
- Node.js version 16.14.0 or higher
Run the following commands to get started working on Hydrogen.
Command | Description |
---|---|
git clone [email protected]:Shopify/hydrogen.git |
Clones the repo to your local computer |
npm install |
Installs the dependencies with npm |
npm run dev |
Runs the dev command in all packages |
npm run build |
build s packages for production distribution |
Hydrogen is a monorepo built with Turborepo and consists of the following workspaces:
packages/hydrogen
: Opinionated Remix components, hooks, and utilities provided by Hydrogenpackages/hydrogen-react
: Platform-agnostic components, hooks, and utilities. This package is used by Hydrogen and published on its own for use by other React-based frameworks.packages/create-hydrogen
: Package scripts to create new Hydrogen apps from the command line.packages/hydrogen-codegen
: GraphQL <> TypeScript code generator for Storefront API queries.packages/remix-oxygen
: A Remix runtime adapter for Oxygen, Shopify’s serverless hosting platform.packages/cli
: A plugin for the Shopify CLI to provide specific commands for working on Hydrogen storefronts.templates
: Full working implementations of Hydrogen storefronts. Used for scaffolding new starter Hydrogen apps, testing, and feature development.
Running npm run dev
at the root of the monorepo is the most common way to develop in Hydrogen. With this task running, each package will be rebuilt when files change. In a different terminal, change directory to any project inside templates
and serve with npm run dev
. The preview URL will be printed in the terminal.
The Readme.md
files in the directories of individual packages and templates contain more specific information for developing in that workspace.
The Hydrogen monorepo provides commands for linting and formatting, and uses Yorkie to run checks on staged commits automatically.
Command | Description |
---|---|
npm run typecheck |
Checks source-code for invalid TypeScript |
npm run lint |
Lints the code with ESLint |
npm run format |
Formats the code with prettier |
Hydrogen follows common React naming conventions for filenames, component names, classes, constants, and more.
- For component filenames and class names, always use
PascalCase
. - For non-component filenames, always use fully lowercase
kebab-case
. - For test filenames, append
.test
before the file extension. - When declaring instances of components, always use
camelCase
. - When declaring exported constants, always use
SCREAMING_SNAKE_CASE
.
✅ Valid | 🚫 Invalid | |
---|---|---|
Component filenames: | ProductTitle.tsx ProductTitle.tsx |
productTitle.tsx product_title.tsx product-title.tsx |
Non-component filenames: | client.ts handle-event.ts |
Client.ts handleEvent.ts handle_event.ts |
Test filenames: | ExternalVideo.test.tsx |
ExternalVideo-test.tsx ExternalVideo_test.tsx ExternalVideoTest.tsx |
Component classes: | <AddToCartButton /> |
<addToCartButton /> |
Component instances: | const cartSelector = <CartSelector /> |
const CartSelector = <CartSelector /> const cart_selector = <CartSelector /> |
Exported constants: | export const CART_COOKIE_TTL_DAYS = 14; |
export const CartCookieTTLDays = 14; export const cart_cookie_ttl_days = 14; |
If you are contributing a user-facing or noteworthy change to Hydrogen that should be added to the changelog, you should include a changeset with your PR by running the following command.
Command | Description |
---|---|
npm run changeset add |
Add a changeset locally |
Follow the prompts to select which package(s) are affected by your change, and whether the change is a major, minor or patch change. This will create a file in the .changesets
directory of the repo. This change should be committed and included with your PR.
Considerations:
- You can use markdown in your changeset to include code examples, headings, and more. However, please use plain text for the first line of your changeset. The formatting of the GitHub release notes does not support headings as the first line of the changeset.
When merging PRs, please select the Squash and Merge option, which consolidates all the changes from the PR into a single commit. This helps reduce the commit noise in our Git repository.
Hydrogen tests are run using vitest. You can run the tests with the following commands.
Command | Description |
---|---|
npm run test |
Run the tests once |
npm run test:watch |
Run the tests once and re-run them when files are saved |
Tests that fail only in CI can be difficult and time-consuming to debug. If you find yourself in this situation, you can use tmate to pause the Github Action on a given step and ssh
into the container. Once in the container you can use vim
, inspect the file system and try determining what might be diverging from running tests on your local computer and leading to the failure.
- Add the following
step
in your Github Actions workflow:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- Commit and push your changes to Github.
- The testing Github Action will run automatically and you will see it paused with both a Web Shell address and SSH address.
- Copy and paste the SSH address into your terminal.
The reference docs for Hydrogen and Hydrogen React are published on Shopify.dev:
In both cases, the reference documentation is stored in the Hydrogen repo in *.doc.ts
files (example). These files get compiled into JSON, which is then copied over to Shopify.dev. For more background about how references work, see Shopify internal documentation on “Writing UI reference docs”.
Note: A Pull Request is automatically created every night to sync the changes from the Hydrogen repo to the
shopify-dev
repo. Once changes are merged into Hydrogen, you can merge the newest such PR inshopify-dev
; if there are older PRs of this type present, they can safely be closed, since they're now stale.
- From the command line,
cd
to eitherpackages/hydrogen
orpackages/hydrogen-react
. - Run
npm run build-docs
(view build script) - The script compiles and formats either one or both JSON files:
packages/{PACKAGE}/docs/generated/generated_docs_data.json
packages/{PACKAGE}/docs/generated/generated_static_pages.json
- You're now ready to copy these files to Shopify.dev.
Note: Only Shopify staff will be able to complete these tasks, as it requires access to the private code repository for Shopify.dev.
- Terminal:
spin up shopify-dev:minimal
- Terminal:
spin code
to open a VSCode Spin instance - Copy the contents of the compiled JSON files to their corresponding location in the VSCode Spin instance:
db/data/docs/templated_apis/{PACKAGE}/{VERSION}/generated_docs_data.json
db/data/docs/templated_apis/{PACKAGE}/{VERSION}/generated_static_pages.json
- In the VSCode Spin instance:
- Click on the Spin extension (with the Shopify bag icon).
- Expand the list, then click on the "Restart unit" button for the
Server
line. (You can, alternatively, restart the whole spin instance by clicking on the restart button at the root, but it's not necessary and is likely slower.)
- Terminal:
spin open
(note: your original terminal and not the terminal for the VSCode Spin instance) - In your browser, click on the
shopify.dev
link. You'll be redirected to your own personal spin instance of the docs - Navigate to
{unique spin url}/docs/api/hydrogen
to see your updates
Consider what commerce concepts you’ll be working with for the component or abstraction. Hydrogen is coupled to the Shopify Storefront API; examining how a commerce primitive is represented there -what data is essential in the API and which other resources use them- is important.
Consider what a sensible default would be for the component or abstraction. Look at high GMV commerce websites and check if there is a common pattern for how this information is displayed -be sure to examine both Shopify and non-Shopify storefronts. Browse through the Liquid documentation, look forfilters related to your component or abstraction, and consider what defaults those provide and the customizations they support.
Consider how to provide the best developer experience when using this component or abstraction. Hydrogen must be fun and easy to use, with good ergonomics, types and tooling. Developers should be delighted when they use Hydrogen. To quote Tobi Lütke: “Delight works by taking your experience minus your expectation, and if the end result is a positive number, you are delighted by that margin.”