Builderoo lets you develop themes/templates for custom shopfronts with React that you can deploy on the Builderoo platform to launch your fully custom e-commerce store.
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 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 an IDE (VSCode/WebStorm) to start developing your theme.
This command also automatically installs the npm
dependencies.
To skip this step and install the dependencies yourself,
pass the --skip-install
option like this:
yarn create theme --skip-install
The default package manager is npm
. If you'd like to use a
different package manager, you can use these options: --use-yarn
, --use-pnpm
, --use-bun
.
Read the Builderoo documentation at https://builderoo.dev