• Stars
    star
    1,136
  • Rank 39,564 (Top 0.9 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 7 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Phaser 3 project template that uses Webpack 5 for bundling

Phaser 3 Webpack Project Template

A Phaser 3 project template with ES6 support via Babel 7 and Webpack 4 that includes hot-reloading for development and production-ready builds.

This has been updated for Phaser 3.50.0 version and above.

Loading images via JavaScript module import is also supported, although not recommended.

Requirements

Node.js is required to install dependencies and run scripts via npm.

Available Commands

Command Description
npm install Install project dependencies
npm start Build project and open web server running project
npm run build Builds code bundle with production settings (minification, uglification, etc..)

Writing Code

After cloning the repo, run npm install from your project directory. Then, you can start the local development server by running npm start.

After starting the development server with npm start, you can edit any files in the src folder and webpack will automatically recompile and reload your server (available at http://localhost:8080 by default).

Customizing the Template

Babel

You can write modern ES6+ JavaScript and Babel will transpile it to a version of JavaScript that you want your project to support. The targeted browsers are set in the .babelrc file and the default currently targets all browsers with total usage over "0.25%" but excludes IE11 and Opera Mini.

"browsers": [
 ">0.25%",
 "not ie 11",
 "not op_mini all"
]

Webpack

If you want to customize your build, such as adding a new webpack loader or plugin (i.e. for loading CSS or fonts), you can modify the webpack/base.js file for cross-project changes, or you can modify and/or create new configuration files and target them in specific npm tasks inside of `package.json'.

Deploying Code

After you run the npm run build command, your code will be built into a single bundle located at dist/bundle.min.js along with any other assets you project depended.

If you put the contents of the dist folder in a publicly-accessible location (say something like http://mycoolserver.com), you should be able to open http://mycoolserver.com/index.html and play your game.

More Repositories

1

phaser

Phaser is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.
JavaScript
36,357
star
2

phaser-ce-examples

Contains hundreds of source code examples and related media for the Phaser HTML5 Game Framework.
JavaScript
1,751
star
3

examples

Phaser 3 Examples
JavaScript
1,478
star
4

phaser-ce

Phaser CE is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.
JavaScript
1,331
star
5

template-rollup-typescript

A quick-start project template that uses Phaser 3, TypeScript and Rollup for bundling
JavaScript
478
star
6

phaser-ce-plugins

For Phaser related Plugins
JavaScript
205
star
7

phaser-ce-coding-tips

Phaser Coding Tips
HTML
145
star
8

custom-build

Create your own custom Phaser 3 builds and shave hundreds of KB off your bundle size.
JavaScript
79
star
9

template-vite

A Phaser 3 project template that uses Vite for bundling
JavaScript
57
star
10

template-vite-ts

A Phaser 3 project template that uses TypeScript and Vite for bundling
TypeScript
50
star
11

facebook-instant-games

Phaser 3 Facebook Instant Games Examples
JavaScript
46
star
12

dev

The Phaser 4 R&D Repo. This is ground-zero, where we test new features before making official examples from them.
JavaScript
40
star
13

plugin-template

A base plugin template for Phaser 3
JavaScript
39
star
14

template-react

A Phaser 3 project template that demonstrates React communication and uses Vite for bundling
JavaScript
36
star
15

web-monetization-plugin

An easy-to-use Web Monetization Plugin for HTML5 game frameworks, including Phaser and Pixi.
HTML
29
star
16

template-vue

A Phaser 3 project template that demonstrates Vue communication and uses Vite for bundling
JavaScript
28
star
17

template-svelte

A Phaser 3 project template that combine Svelte with TypeScript and uses Vite for bundling
TypeScript
28
star
18

template-vue-ts

A Phaser 3 TypeScript project template that demonstrates Vue communication and uses Vite for bundling
Vue
26
star
19

template-react-ts

A Phaser 3 TypeScript project template that demonstrates React communication and uses Vite for bundling
TypeScript
26
star
20

template-nextjs

A Phaser TypeScript project template that uses Next.js
TypeScript
23
star
21

warp-post-fx

Phaser 3 Warp Post FX Pack
TypeScript
16
star
22

template-parcel

A Phaser 3 project template that uses Parcel 2 for bundling
JavaScript
15
star
23

template-angular

A Phaser 3 TypeScript project template that uses the Angular framework and Vite for bundling
TypeScript
14
star
24

create-game

Easily create a Phaser project with our official template CLI tool
JavaScript
13
star
25

beam-archive

Phaser Beam
JavaScript
11
star
26

template-esbuild

A Phaser 3 project template that uses ESBuild for bundling
JavaScript
10
star
27

template-webpack-ts

A Phaser 3 project template that uses TypeScript and Webpack for bundling
TypeScript
10
star
28

template-solid

A Phaser 3 project template that combines SolidJS, TypeScript and uses Vite for bundling
TypeScript
9
star
29

phaser-by-example

The source code to the games that go with the Phaser by Example book
JavaScript
8
star
30

template-rollup

A Phaser 3 project template that uses Rollup for bundling
JavaScript
7
star
31

discord-template

A quickstart Phaser template for creating playable Discord Activities
JavaScript
6
star
32

template-esbuild-ts

A Phaser 3 project template that uses TypeScript and ESBuild for bundling
TypeScript
5
star
33

template-parcel-ts

A Phaser 3 project template that uses TypeScript and Parcel for bundling
TypeScript
5
star
34

template-importmap

A Phaser 3 project template that uses Import Maps instead of a bundler
JavaScript
4
star
35

phaser-ce-wip-archive

Archived Phaser wip files
TypeScript
4
star
36

template-rollup-ts

A Phaser 3 project template that uses TypeScript and Rollup for bundling
TypeScript
4
star
37

vscode-examples-plugin

TypeScript
3
star
38

wip-archive

A home for our temporary and wip dev files
JavaScript
2
star
39

tests

Phaser 4 Unit Tests
HTML
1
star
40

.github

1
star