git clone https://github.com/LevanisART/shopify-storefront-app.git
this repositorycd storefront-api-examples
cd react-js-buy
npm install
If you would like to connect your store to this example, open up src/index.js
and update the domain
and storefrontAccessToken
:
const client = Client.buildClient({
storefrontAccessToken: 'your-storefront-access-token',
domain: 'your-shop-name.myshopify.com',
});
Start a local server:
npm start
- Visit your app at http://localhost:3000.