We're transitioning Studio from Beta to Early Availability
Hygraph
Docs

You are currently reading the Studio Docs. If you were looking for the Classic Docs check here

7.1 Creating a frontend using Next

#Overview

In this lesson, you'll learn how to create a Next app and connect it to Hygraph.

This document is divided in two parts, the first one is a quick overview that explains how to set up a new Next project from scratch. This is general information, in case you have never created a Next project before.

The second part of this document is the lesson of our Getting Started where you clone the e-commerce Hygraph starter that will be used for the rest of the tutorial.

#Quick overview: Creating a new Next app

To start, we need to initialize a new Next.js 13 project. Open up your terminal and navigate to where you want your project, then run the following command:

npx create-next-app hygraph-boutique

The interactive setup will ask you questions to configure your project. Initialize with the following answers:

  • Typescript: No
  • ESLint: Yes
  • Tailwind CSS: Yes
  • src/ directory: No
  • App Router: Yes
  • Import alias: No

After choosing the options, the CLI will install all the necessary pieces to run your Next.js site.

Once the installation completes, open the new Next project in a code editor of your choice. We need to adjust the default Tailwind styling that Next.js gives us from the installation.

Remove the global CSS rules in styles/globals.css except following Tailwind imports:

@tailwind base;
@tailwind components;
@tailwind utilities;

#Clone the Hygraph E-commerce starter

Since, we already have a Hygraph project, let's clone the starter without creating a new Hygraph project. Here's the link to the repository.

Type the following command into your terminal to clone the starter:

git clone https://github.com/hygraph/hygraph-next-commerce-starter.git

Navigate to the project directory and type npm install to install the package dependencies.

You project's file tree should look like this:

Next file treeNext file tree

In the next lesson, we will connect our e-commerce storefront to our existing Hygraph project.