Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thlorenz/pixi-typescript

Project setup to hack on [pixijs](www.pixijs.com) apps in typescript.
https://github.com/thlorenz/pixi-typescript

Last synced: 15 days ago
JSON representation

Project setup to hack on [pixijs](www.pixijs.com) apps in typescript.

Awesome Lists containing this project

README

        

# pixi-typescript

Project setup to hack on [pixijs](www.pixijs.com) apps in typescript.

## Installation

Clone this repo + run `npm install`.

## Usage

Run `npm start` to start watching and serving your game page.

Run `npm run build` to create a distributable version of your game inside `./dist`.

## Setup

[parceljs](https://parceljs.org/) is used to bundle and serve JavaScript.

Settings inside `tsconfig.json` and the below inside `package.json` keeps
transpilation/compilation to a mimimum during development.

```js
"browserslist": {
"development": [
"last 1 chrome version"
]
}
```

[hot module replacement](https://parceljs.org/hmr.html) is also enabled (see `./main.js`).

Basically the game is recreated with a new Canvas after the old Canvas was removed from the
page. This means that when serving your game via `npm start` you can simply make edits and save
and see the browser page update itself.

## License

MIT