New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-phaser-game

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-phaser-game

Generate a new Phaser 3 game using Webpack

1.0.0
latest
npm
Version published
Weekly downloads
9
80%
Maintainers
1
Weekly downloads
 
Created
Source

create-phaser-game

A template for creating new Phaser 3 games with Webpack.

Usage

yarn create phaser-game [name-of-your-phaser-game]

This will generate a directory with the following contents:

./name-of-your-phaser-game
├── index.html
├── package.json
├── public
│   ├── android-chrome-192x192.png
│   ├── android-chrome-512x512.png
│   ├── favicon-16x16.png
│   ├── favicon-32x32.png
│   ├── favicon.ico
│   └── site.webmanifest
├── src
│   ├── index.css
│   └── index.js
├── webpack.config.js
└── yarn.lock

The src/index.js file is where your Phaser.Game will be instantiated. You can import new scenes from your app into this file like so:

import Phaser from "phaser"
import BootScene from "./scenes/boot"
import WorldScene from "./scenes/world"

document.addEventListener("DOMContentLoaded", () => {
  new Phaser.Game({
    type: Phaser.AUTO,
    scenes: [
      BootScene,
      WorldScene
    ]
  })
})

A scene in src/scenes might look something like this:

import { Scene } from "phaser"
import tiles from "../images/tiles"

export default class Boot extends Scene {
  constructor() {
    super({ key: "BootScene", active: true })
  }

  preload() {
    this.load.image("tiles", tiles)
  }
}

Development

To run tests:

yarn test

To actually generate an app:

yarn start [name-of-your-phaser-game]

And, for lint checks of the local library:

yarn lint

FAQs

Package last updated on 10 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts