Skip to main content
Version: 4.xx.xx

3. Creating your refine project

Launch the refine CLI setup​

The easiest way to create a new project is using the refine CLI. This tool will help you get started quickly by generating a new project with a basic configuration and a folder structure that follows best practices.

  1. Launch your terminal and type the following command using your preferred package manager:

    npm create refine-app@latest -- -o refine-headless tutorial
  2. Confirm y to installation of create-refine-app

  3. The -o refine-headless flag in the command above tells the CLI to install the project with the refine-headless preset. This preset selects some of the options for you in accordance with this tutorial. Outside of this tutorial, you can skip this flag and select your own options.

  4. The CLI will then ask if you agree to share your selection anonymously with the refine team. This is for measuring community preferences. You can learn more about it here: Telemetry.

Once the installation wizard is finished, you can close this terminal window and open VS Code to continue your journey.

Open your project in VS Code​

  1. Open VS Code and select the directory that was generated during your setup process.

  2. Make sure the terminal is open and ready to run commands. You can open it by pressing Ctrl + J(Windows) or Cmd ⌘ + J(macOS).

For the rest of this tutorial, you can use the terminal within VS Code instead of your computer's terminal.

Running the dev server​

Previewing your project while you work on it is important. To open it as a webpage, the project must be running in development(dev) mode.

Start the dev server

To start the dev server, run the following command in your terminal:

npm run dev

You should see confirmation in the terminal that the refine app is running in dev mode.

Viewing a preview of your app​

Your project files contain all the code you need to run your app. To see a preview of your app in the browser:

  1. Click on the localhost:3000 link in the terminal. This will open a new browser tab with your app running in dev mode.

  2. You will be redirected to the welcome page as we have not added any pages yet. We will take care of that in the Next section

Here's what you should see:

http://localhost:3000

Checklist