https://github.com/asktree/snork-game
https://github.com/asktree/snork-game
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/asktree/snork-game
- Owner: asktree
- Created: 2022-08-12T18:43:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-12T18:51:08.000Z (almost 4 years ago)
- Last Synced: 2025-01-05T02:13:39.005Z (over 1 year ago)
- Language: TypeScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- 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