Skip to main content

Prerequisites

Before you begin, make sure you have:
  • World Engine (quickstart)
  • Node.js version 22 or higher installed
  • A package manager (npm, yarn, pnpm, or bun)

Scaffold a demo game project (web)

Install World CLI if you haven’t already. Once you have it installed, you can scaffold your first demo game by running the following command in your terminal:
world create --example demo-game # TODO

Start World Engine in development mode

world dev # TODO

Start demo game client in development mode

You need Node.js to run the example demo game for web.
cd demo-game-client # TODO
Then, install dependencies using your preferred package manager.
npm install
Once installation is successful, run the demo game client.
npm run dev

# Then visit http://localhost:5555
I