Home

Awesome

<h1 align="center"> <br> <a href="https://github.com/yandeu/phaser3-multiplayer-with-physics#readme"><img src="readme/phaser-with-nodejs.png" alt="header" width="400"></a> <br> Phaser 3 - Real-Time Multiplayer example with Physics <br> </h1> <h4 align="center"> A Real-Time Multiplayer example using <a href="https://phaser.io/" target="_blank" >Phaser 3</a> with Physics (MatterJS and Arcade) on a NodeJS server with <a href="https://expressjs.com/" target="_blank" >Express</a> and <a href="https://socket.io/" target="_blank" >Socket.io</a></h4> <p align="center"> <a href="https://david-dm.org/yandeu/phaser3-multiplayer-with-physics" title="dependencies status"> <img src="https://david-dm.org/yandeu/phaser3-multiplayer-with-physics/status.svg?style=flat-square"/> </a> <img alt="GitHub package.json version" src="https://img.shields.io/github/package-json/v/yandeu/phaser3-multiplayer-with-physics?style=flat-square"> <a href="https://opensource.org/licenses/MIT" title="License: MIT" > <img src="https://img.shields.io/badge/License-MIT-greenbright.svg?style=flat-square"> </a> <img src="https://img.shields.io/github/last-commit/yandeu/phaser3-multiplayer-with-physics.svg?style=flat-square" alt="GitHub last commit"> <a href="https://github.com/prettier/prettier" alt="code style: prettier"><img src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square"></a> </p>

⚠️ Note

This example is using @geckos.io/phaser-on-nodejs which is very slow tedious. If you need to run Phaser's Arcade Physics on the Server, I recommend using arcade-physics. I will not update this example anymore.

Play It

This example is running on NodeJS on Heroku (Free Dyno in Europe) which causes the example sometimes to take about 1 minute to load.

Key Features

Geckos.io

Why does this game example not use geckos.io?
Well there are two reasons:

Video

Watch it on YouTube

thumbnail

Matter Physics vs Arcade Physics

This example includes 2 different games. One with MatterJS and the other with Arcade. The MatterJS game has only one level. The Arcade one is a simple platformer game with 3 levels.

So in total, you can play 4 different levels. For each level, the server creates a new room, which creates a new Phaser instance, which are completely isolated from each other. There can be up to 4 players per room.

Structure

├── src
│   ├── client  # Contains all the code the client will need
│   ├── physics # This is for debugging the physics (Arcade and MatterJS)
│   ├── server  # Contains the code running on the NodeJS server
│   └── stats   # The stats page will show useful information about the server

How To Use

To clone and run this template, you'll need Git and Node.js (which comes with npm) installed on your computer.

You also need to install some additional packages since this example uses Node-Canvas. See here.

From your command line:

# Clone this repository
$ git clone --depth 1 https://github.com/yandeu/phaser3-multiplayer-with-physics.git phaser3-example

# Go into the repository
$ cd phaser3-example

# Install dependencies
$ npm install

# Start the local development server (on port 3000)
$ npm run dev

# To publish a production build using docker use docker:publish
# This needs docker and docker-compose to be installed on your machine
$ npm run docker:publish

Other Multiplayer Examples

Looking for a simpler multiplayer example? Take a look at Phaser 3 - Multiplayer Game Example.

License

The MIT License (MIT) 2019 - Yannick Deubel. Please have a look at the LICENSE for more details.