https://github.com/kyletryon/antsim
https://github.com/kyletryon/antsim
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kyletryon/antsim
- Owner: KyleTryon
- Created: 2021-07-27T00:51:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-27T00:51:40.000Z (almost 5 years ago)
- Last Synced: 2025-10-23T01:53:56.999Z (8 months ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- 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