https://github.com/p4dd9/wh-gamejam
https://github.com/p4dd9/wh-gamejam
airconsole game hacktoberfest phaserjs typescript webpack
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/p4dd9/wh-gamejam
- Owner: p4dd9
- License: mit
- Created: 2022-10-12T11:35:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-16T07:56:14.000Z (over 3 years ago)
- Last Synced: 2025-12-22T21:04:48.448Z (7 months ago)
- Topics: airconsole, game, hacktoberfest, phaserjs, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 7.23 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AirConsole Boilerplate
## Installation
To get started it is required to install both [NodeJS](https://nodejs.org/en) and [NPM](https://www.npmjs.com). It is recommended to use [nvm](https://github.com/nvm-sh/nvm) for version managed. The required NodeJS version is stated in [nvmrc](.nvmrc).
Verify the correct version is installed by typing `node -v`, `npm -v` which prints the version in use.
Run `npm install`. On success a `node_modules` folder containing all installed packages defined in [package.json](package.json) is created.
## Scripts
Builds the project and exports files into the `/dist/` directory which contains all necessary build files.
```
npm run build
```
Watch src files and runs webpack to export files accordingly to changes.
```
npm run watch
```
Runs a dev server on port 8887 defined in [webpack.config.js](webpack.config.js) and reloads the browser on `/dist/` changes.
```
npm run serve
```
## Technologies used
- TypeScript
- CSS
- PhaserJS
- AirConsole
- NodeJS
- NPM
- webpack
- prettier
## Noteworthy
[NodeJS](https://nodejs.org/en/)
[NPM](https://www.npmjs.com/)
[AirConsole | Get Started](https://developers.airconsole.com/#!/getting_started)
[PhaserJS | Get Started](https://phaser.io/tutorials/getting-started-phaser3)