Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/thlorenz/pixi-typescript
- Owner: thlorenz
- License: mit
- Created: 2018-11-24T20:54:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-24T20:55:22.000Z (almost 6 years ago)
- Last Synced: 2024-10-18T03:33:43.066Z (20 days ago)
- Language: TypeScript
- Size: 6.84 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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