Skip to content

Installation

Want to create a new game ? Fibbo provides a starter project based on Vite for both 2D and 3D games. It includes a basic scene as well as devtools to help you get started quickly.

Prerequisites

  • Node.js : for now, Fibbo was only tested with Node.js 22.2.0, but it should work with any other versions as it is mainly a frontend technology.
  • npm : should be included with Node.js

CLI

Fibbo provides a CLI to help you create and manage your projects. You can install it globally with npm :

bash
npm install -g fibbo
fibbo help

It can also be used directly through npx :

bash
npx fibbo help

Quick start

bash
fibbo init 2d [project-name]
bash
fibbo init 3d [project-name]

You can also clone the templates directly from GitHub :

Manual installation work in progress