Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appelboomhd/chess-phaser
Chess made using Phaser 3 with TypeScript and Object-Oriented Programming
https://github.com/appelboomhd/chess-phaser
chess object-oriented-programming phaser3 phaserjs typescript
Last synced: 12 days ago
JSON representation
Chess made using Phaser 3 with TypeScript and Object-Oriented Programming
- Host: GitHub
- URL: https://github.com/appelboomhd/chess-phaser
- Owner: AppelBoomHD
- Created: 2022-05-28T08:23:04.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T21:46:57.000Z (over 1 year ago)
- Last Synced: 2024-10-17T17:49:47.420Z (30 days ago)
- Topics: chess, object-oriented-programming, phaser3, phaserjs, typescript
- Language: TypeScript
- Homepage: https://chess.juulsoft.com
- Size: 473 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chess-phaser
[![icon](/public/apple-touch-icon.png)](https://chess.juulsoft.com)
> This is a Chess game made using [Phaser 3](https://github.com/photonstorm/phaser) with [TypeScript](https://www.typescriptlang.org/) implementing [Object-Oriented Programming](https://en.wikipedia.org/wiki/Object-oriented_programming)
## Available Commands
| Command | Description |
| --------------------------- | -------------------------------------------------------- |
| `npm install` | Install project dependencies |
| `npm start` / `npm run dev` | Builds project and open web server, watching for changes |
| `npm run build` | Builds code bundle with production settings |
| `npm serve` | Run a web server to serve built code bundle |## Development
After cloning the repo, run `npm install` from your project directory. Make a copy of `.env.example` and name it `.env`. Then, you can start the local development
server by running `npm start` and navigate to http://localhost:3000.## Production
After running `npm run build`, the files you need for production will be on the `dist` folder. To test code on your `dist` folder, run `npm run serve` and navigate to http://localhost:5000