If you don’t want to [deploy to Oxygen](/docs/storefronts/headless/hydrogen/deployments), then you can host Hydrogen on other JavaScript runtimes, such as Vercel, Netlify, Fly.io, and Cloudflare Workers. ## Requirements - [Install the Headless channel](/docs/storefronts/headless/bring-your-own-stack). This enables access to the Storefront API and Customer Account API, and lets you manage API tokens. ## Steps to update your Hydrogen app > Note > Your hosting platform might have other requirements or implementation details not covered here. ### Step 1: Update your Remix adapter Remix, Hydrogen’s [underlying framework](/docs/storefronts/headless/hydrogen/fundamentals#remix), provides a range of [adapters](https://remix.run/docs/other-api/adapter) that allow you to adjust your app configuration and build step to target different deployment runtimes. 1. In your Hydrogen app, uninstall the Remix adapter for Oxygen: ```sh npm uninstall @shopify/remix-oxygen ``` 1. Install the Remix adapter for your selected hosting platform. For example: ```sh npm install @remix-run/cloudflare ``` ### Step 2: Edit app files for your adapter Typically, when changing Remix adapters, you’ll need to make updates to the following files: - `server.js` - `remix.config.js` - `app/entry.server.jsx` Remix provides [templated examples](https://github.com/remix-run/remix/tree/main/templates) for a range of adapters. Consult your chosen adapter's template files for specific configurations or required edits. When making changes, make sure that you continue to pass Hydrogen’s Storefront API client to the Remix loader context. Typically, this involves editing the updated `server.js` file using the [`createRequestHandler` function](https://remix.run/docs/main/other-api/adapter#createrequesthandler) provided by your chosen adapter. The following example shows some changes that your app might require: