October 2022
This template has been deprecated in favor of a more modern version using Vite. You can find it here: https://github.com/ourcade/phaser3-typescript-vite-template
For people who want to spend time making Phaser 3 games in TypeScript instead of configuring build tools.
This is a TypeScript specific fork of phaser3-parcel-template.
You'll need Node.js, npm, and Parcel installed.
It is highly recommended to use Node Version Manager (nvm) to install Node.js and npm.
For Windows users there is Node Version Manager for Windows.
Install Node.js and npm with nvm:
nvm install node
nvm use nodeReplace 'node' with 'latest' for nvm-windows.
Then install Parcel:
npm install -g parcel-bundlerClone this repository to your local machine:
git clone https://github.com/ourcade/phaser3-typescript-parcel-template.gitThis will create a folder named phaser3-typescript-parcel-template. You can specify a different folder name like this:
git clone https://github.com/ourcade/phaser3-typescript-parcel-template.git my-folder-nameGo into your new project folder and install dependencies:
cd phaser3-typescript-parcel-template # or 'my-folder-name'
npm installStart development server:
npm run start
To create a production build:
npm run build
Production files will be placed in the dist folder. Then upload those files to a web server. π
    .
    βββ dist
    βββ node_modules
    βββ public
    βββ src
    β   βββ scenes
    β   β   βββ HelloWorldScene.ts
    β   βββ index.html
    β   βββ main.ts
    βββ package.json
The contents of this template is the basic Phaser 3 getting started example.
This template assumes you will want to organize your code into multiple files and use TypeScript.
TypeScript files are intended for the src folder. main.ts is the entry point referenced by index.html.
Other than that there is no opinion on how you should structure your project. There is a scenes folder in src where the HelloWorldScene.ts lives but you can do whatever you want.
Any static assets like images or audio files should be placed in the public folder. It'll then be served at http://localhost:8000/images/my-image.png
Example public structure:
    public
    βββ images
    β   βββ my-image.png
    βββ music
    β   βββ ...
    βββ sfx
    β   βββ ...
They can then be loaded by Phaser with this.image.load('my-image', 'images/my-image.png').
This template uses a basic typescript-eslint set up for code linting.
It does not aim to be opinionated.
You can change the dev server's port number by modifying the start script in package.json. We use Parcel's -p option to specify the port number.
The script looks like this:
parcel src/index.html -p 8000
Change 8000 to whatever you want.
parcel-plugin-clean-easy is used to ensure only the latest files are in the dist folder. You can modify this behavior by changing parcelCleanPaths in package.json.
parcel-plugin-static-files is used to copy static files from public into the output directory and serve it. You can add additional paths by modifying staticFiles in package.json.
