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

https://github.com/wurstcommander/phaser_typescript_boilerplate

Phaser Boilerplate Typescript with Webserver (grunt, nodejs, tslint)
https://github.com/wurstcommander/phaser_typescript_boilerplate

Last synced: 12 months ago
JSON representation

Phaser Boilerplate Typescript with Webserver (grunt, nodejs, tslint)

Awesome Lists containing this project

README

          

# Phaser Boilerplate Typescript with Webserver (grunt, nodejs, tslint)

## Requirements

- Install nodejs + npm (
- Open cmd in project directory then:
- "npm install"
- "npm install grunt -g"
- "npm install typescript -g"
- "grunt"

Your webbrowser should open the index.html file and the phaser logo will shine in it's glory.

Inside Visual Studio Code:

- start/stopp autobuild of Typescript Code mit Strg+Shift+B

# Useful Resources

## Tutorials

-

### Graphic tools sprites

- - Desktop-Version https://github.com/juliandescottes/piskel/wiki/Desktop-applications
-

### Graphic tools Tiles

- http://www.mapeditor.org/

### Sound tools

-

### Assets

-
-
-

# Tips and workarounds

## Install nodejs modules global

Use Powershell or cmd to execute the following commands:

- npm install -g typescript
- npm install -g tslint
- npm install -g grunt

## Nodejs with Proxy:

If you have to use a proxy for Nodejs / npm and there are connection issues:

"npm config list" should contain these settings:

http-proxy = "http://USER:MYPASS@PROXY.DE:80"
https-proxy = "http://USER:MYPASS@PROXY.DE:80"
strict-ssl = false

You can set these with: npm config set https-proxy "http://USER:MYPASS@PROXY.DE:80" & npm config set strict-ssl false
More Infos: http://superuser.com/questions/347476/how-to-install-npm-behind-authentication-proxy-on-windows