Docs
Getting Started
Installation

Installation

Pre-requisites

  • Node.js >= 18.17

Start a new project

You can start developing a Builderoo theme by running the following command.

npx create-theme@latest
# or
yarn create theme
# or
pnpm create theme
# or
bunx create-theme

This will generate ask you for a project name and create a directory structure with minimal files for you to work on. You can open the root directory in a code editor to start developing your theme.

Good to know: Local theme development runs on top of Next.js. So you get all the good stuffs like Fast Refresh and a Zero Config environment. You do not need to be experienced in Next.js, all you need is a bit of React knowledge.