@phaserquick/cli
v1.1.3
Published
<h1>CLI</h1>
Downloads
39
Readme

Getting Started
The phaserquick starter project scaffolds a feature packed Phaser workspace by using the @phaserquick/cli. Read on to learn more about the features the starter project has to offer.
Setup
What you should already have
- Node.js version 18.0 or above
- Start by installing
@phaserquick/clinpm package globally on your machine.
npm install -g @phaserquick/cli@latestGenerate a new game
To generate a new game open up your terminal where you want to create the game and execute:
phaserquick newThe CLI will walk you through the creation of your game.
Start your game
Once created navigate to your game:
cd my-gameInstall your dependencies:
npm installStart your game:
npm start