๐ญ A Nuxt Shopify template based on Hydrogen (Nuxt4 ready!)
Nitrogen is a Nuxt template inspired by Shopifyโs Hydrogen framework for headless commerce. This template is designed to empower Nuxt developers to build fast, scalable, and customizable storefronts that incorporate key features from Hydrogenโs starter theme.
[!IMPORTANT]
This template now features a minimal Sanity integration on a separatesanity
branch. This is meant to pair with the Nitrogen Sanity Studio template, which synchronizes content between a Sanity dataset and your Shopify storefront.
[!TIP]
Read through the docs to learn how to configure your Shopify store to work with Nitrogen!
To begin using Nitrogen, youโll need to add the following environment variables:
# Shopify
NUXT_SHOPIFY_STOREFRONT=https://your-shop-name.myshopify.com
NUXT_SHOPIFY_ACCESS_TOKEN=your_storefront_access_token
NUXT_SHOPIFY_API_VERSION=2025-01
# Klaviyo (optional)
NUXT_KLAVIYO_PUBLIC_API_KEY=your_public_api_key
NUXT_KLAVIYO_PRIVATE_API_KEY=your_private_api_key
NUXT_KLAVIYO_API_VERSION=2025-01-15
# Sanity (optional)
NUXT_SANITY_PROJECT_ID=your_project_id
NUXT_SANITY_DATASET=production
NUXT_SANITY_API_VERSION=2025-02-02
NUXT_SANITY_STUDIO_URL=http://your-site-domain.com
NUXT_SANITY_API_READ_TOKEN=your_api_read_token
[!WARNING]
It is strongly recommended that you use the2024-07
Storefront API version or higher. If not, you will not have access to new API features found within this template (this will cause breaking changes).
pnpm install
pnpm codegen
pnpm dev
Nitrogen provides a minimal GraphQL client that seamlessly integrates with Shopifyโs Storefront API. It uses a server-side proxy to handle API authentication and requests, while offering a typed interface for executing GraphQL operations.
This project includes pre-built operations for common Storefront API queries and mutations. Feel free to add or remove operations that fit your project needs.
To get GraphQL operations, use the useShopify
composable:
const shopify = useShopify();
Operations can be referenced using this composable with dot notation:
// Shopify
const shopify = useShopify();
// With dot notation
await shopify.cart.addLines(cart.id, [ ... ])
await shopify.product.get({ handle: 'example-product' })
useAsyncData
Perfect for reactive data fetching in pages or components:
// Shopify
const shopify = useShopify();
// Fetch data
const productVars = computed<ProductQueryVariables>(() => ({
handle: handle.value,
country: shopStore.buyerCountryCode,
language: shopStore.buyerLanguageCode
}))
const { data: productData } = await useAsyncData(
`product-${handle.value}`,
() => shopify.product.get(productVars.value),
{ watch: [productVars] }
);
// Computed data
const product = computed(() => productData.value)
Pinia
Ideal for working with actions in your Pinia stores:
// Shopify
const shopify = useShopify();
// Cart actions
actions: {
async createCart(input?: CartInput, optionalParams?: CartOptionalInput) {
try {
const response = await shopify.cart.create({
input: input,
...optionalParams
});
if (response?.userErrors?.length) {
throw new Error(response?.userErrors[0]?.message);
}
this.cart = response?.cart;
} catch (error: any) {
console.error('Cannot create cart:', error.message);
throw error;
}
},
// More actions...
}
Contributions are always welcome! If youโd like to help improve this project, hereโs how you can get involved:
I actively monitor this repository and will do my best to respond quickly. Whether itโs fixing a small typo or adding a new feature, every contribution helps!