Step 1

1. Setup create-react-app

Take a look at the Getting started page and make sure you have create-react-app up and running.

2. Download product list as JSON

  • Find your favorite Shopify store, eg. Chubbies and download the list of products as JSON by going to the /products.json URL.

  • Add the downloaded file to your project, you will be able to import it as JSON in your code by doing:

// App.js
import products from './products.json';

⚠️ Importing a JSON file is made possible here because you are using create-react-app. Under the hood, create-react-app has a webpack configuration that allows you to import JSON file.

Last updated