β Frequently Asked Questions
Whether you're getting started or deep in development, this FAQ addresses the most common questions developers ask about @nextshopkit/sdk
.
π§ Installation & Setupβ
Which version of Next.js do I need to use this SDK?
The SDK works with both the App Router and Pages Router in Next.js. For the best experience, we recommend Next.js 13.4 or higher, which introduces "use server"
and stable server component support.
That said, the SDK is also fully compatible with:
getServerSideProps
andgetStaticProps
- API routes in the Pages Router
- Route Handlers in the App Router
How do I configure environment variables?
To use the SDK, you need to set the following in your .env.local
:
SHOPIFY_ACCESS_TOKEN=your-storefront-access-token
SHOPIFY_STORE_DOMAIN=your-shop.myshopify.com
These values come from your Shopify admin under:
Apps β Develop Apps β Configure Storefront API.
These variables must stay on the server and will never be exposed to the client.
Which Shopify API version does this SDK use?
By default, this SDK targets:
2025-01
You can customize this in the createShopifyClient()
function using the apiVersion
option. Keeping your API version up to date ensures compatibility with the latest Shopify features and data structures.
Will the free CORE version always remain free?
β Yes! The CORE tier is 100% open source and will always be free to use.
It includes:
- Product & collection fetching
- Cart features
- Metafield support
- Utility functions
We're committed to keeping the fundamentals accessible to everyone β forever.
π Features & Usageβ
How do I fetch a product and handle errors correctly?
When calling getProduct()
, the SDK returns { data, error }
.
Example:
const { data, error } = await getProduct({ handle: "my-product" });
if (error || !data) {
return <div>Product not found.</div>;
}
return (
<>
<h1>{data.title}</h1>
<p>
{data.price.amount} {data.price.currencyCode}
</p>
<div dangerouslySetInnerHTML={{ __html: data.descriptionHtml }} />
</>
);
You should always check for error
before rendering. This keeps your UX clean and protects you from runtime crashes due to missing data.
Can I use this SDK in client components?
π« No β this SDK is strictly for server-side use only.
Shopify credentials live in your .env
and should never be exposed to the client.
β Safe usage includes:
- Server components (App Router)
- API routes
- Route Handlers (
app/api
) "use server"
tagged utilities
Can I filter, sort, and paginate products?
Yes! The getCollection()
function supports:
- Filters (e.g. by price, availability, metafields)
- Sort keys like
PRICE
,TITLE
,CREATED_AT
- Pagination using cursors (
after
,before
)
This makes it perfect for building dynamic collection pages, category filters, or even faceted search.
π Learn more in Filters β
How do I fetch metafields and transform them?
You can define metafields using the customMetafields
array.
To reshape or enhance them, use the transformMetafields()
option to:
- Flatten nested references
- Format or compute display values
- Create summaries or fallback text
Example:
transformMetafields: (raw, casted) => ({
...casted,
metaSummary: `Brand: ${casted["custom.brand"]} Β· ${casted["custom.weight"]} kg`,
});
This keeps rendering logic outside of your components and inside the data layer.
βοΈ Comparisons & Strategyβ
Why should I use this SDK instead of Shopify Hydrogen?
Hydrogen is great β but it comes with constraints:
- Built around Vite and RSC
- Smaller community
- Custom tooling and routing
@nextshopkit/sdk
lets you:
- Stay in Next.js (the most popular React meta-framework)
- Use your own stack and deploy anywhere (Vercel, AWS, Cloudflare)
- Leverage a massive ecosystem and better hiring pool
If you want flexibility, familiarity, and scalability β this SDK fits better.
What are the real benefits of Headless Shopify?
Headless lets you break free from Shopifyβs frontend limitations. You get:
- Full design freedom (no Liquid or theme constraints)
- Better performance and SEO with SSR/SSG
- Custom checkout flows or APIs
- Seamless integration with CRMs, CDPs, or other tools
And with the PRO tier, even content like landing pages or blogs can be fully managed from inside Shopify using metaobjects.
Why use this SDK over raw GraphQL or other clients?
Raw GraphQL is powerful β but also repetitive, error-prone, and hard to type.
This SDK offers:
- Pre-built functions for 90% of your use cases
- Type-safe inputs and outputs
- Easier metafield handling
- Optional transformations and customization
Most devs spend hours debugging queries. This SDK makes your work predictable and fast.
π SEO & Performanceβ
Is this SDK SEO-friendly?
Yes! Since it runs on Next.js, it fully supports:
- Server-side rendering (SSR)
- Static generation (SSG)
- Dynamic routing
- Clean, crawlable URLs
Plus, features like rich_text
rendering and transformMetafields()
help you control your content for SEO without needing extra CMS tools.
Will this SDK slow down my site?
No β it's designed for performance.
Because it's server-side only, it keeps your frontend lightweight and secure.
You can also cache or revalidate queries using:
fetch-cache
strategies- Next.js
revalidate
or ISR - Custom in-memory or edge caching
Have a question thatβs not here? π¬ Open an issue.
Description
Frequently asked questions about @nextshopkit/sdk β including setup, usage, headless Shopify benefits, SEO tips, and Hydrogen comparisons.