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)
- Host: GitHub
- URL: https://github.com/wurstcommander/phaser_typescript_boilerplate
- Owner: WurstCommander
- Created: 2017-12-09T18:31:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T18:53:13.000Z (over 8 years ago)
- Last Synced: 2025-03-15T16:10:25.951Z (over 1 year ago)
- Language: TypeScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readMe.md
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