Quickstart

Getting Started

When starting a Create React App (CRA) you optionally choose a template like: npx create-react-app my-app --template typescript

npx create-react-app my-app
cd my-app

or

yarn create react-app my-app
cd my-app

With that empty project, you just need to add the babylon dependencies:

npm i react-babylonjs @babylonjs/core @babylonjs/gui

or

yarn add react-babylonjs @babylonjs/core @babylonjs/gui