An open API service indexing awesome lists of open source software.

https://github.com/mikedevelops/phaser-typescript-starter

A starting point for Phaser games written in TypeScript.
https://github.com/mikedevelops/phaser-typescript-starter

Last synced: about 2 months ago
JSON representation

A starting point for Phaser games written in TypeScript.

Awesome Lists containing this project

README

          

# Phaser TypeScript Starter

A starting point for [Phaser](https://phaser.io/) games written in [TypeScript](https://www.typescriptlang.org) including [TSLint](https://github.com/palantir/tslint) and [ts-jest](https://github.com/kulshekhar/ts-jest).

## Getting Started

Install project dependencies.

```
npm install
```

Start a local webserver and watch for changes.

```
npm run dev
```

Run test suite.

```
npm test
```

Create a production build.

```
npm run prod
```