https://github.com/colinkiama/ball-park
A prototype of a ball physics puzzle-platformer game using Phaser.js
https://github.com/colinkiama/ball-park
Last synced: 3 months ago
JSON representation
A prototype of a ball physics puzzle-platformer game using Phaser.js
- Host: GitHub
- URL: https://github.com/colinkiama/ball-park
- Owner: colinkiama
- Created: 2022-12-07T22:31:47.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T09:36:01.000Z (about 2 years ago)
- Last Synced: 2025-01-14T08:51:52.181Z (12 months ago)
- Language: TypeScript
- Size: 31.3 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Phaser 3 TypeScript Starter
This is a [Phaser 3](https://github.com/photonstorm/phaser) starter with [TypeScript](https://www.typescriptlang.org/), [Rollup](https://rollupjs.org) with ⚡️ lightning fast HMR through [Vite](https://vitejs.dev/).
## Available Commands
| Command | Description |
|---------|-------------|
| `yarn install` | Install project dependencies |
| `yarn dev` | Builds project and open web server, watching for changes |
| `yarn build` | Builds code bundle with production settings |
| `yarn serve` | Run a web server to serve built code bundle |
## Development
After cloning the repo, run `yarn install` from your project directory. Then, you can start the local development
server by running `yarn dev` and navigate to http://localhost:3000.
## Production
After running `yarn build`, the files you need for production will be on the `dist` folder. To test code on your `dist` folder, run `yarn serve` and navigate to http://localhost:5000