This is a server written in Go for the ImpactJS game engine.
So far, the only thing it does is replace the PHP server that comes with ImpactJS.
You can just download a binary version for your platform.
Then make the impact file executable for your user:
chmod +x impactThen copy it to the root of your game's path and run it:
./impactRun the following to install the server:
go get github.com/geetarista/impactThen just start the server:
impactThe default port the server will listen on is 8080, but you can override that like so:
PORT=8888 impactTo run the tests, you just need Go installed on your system and just run:
go testThis server has only been tested on Mac OS X for now, so if you discover issues on other platforms, please create an issue so I can address them.
MIT. See LICENSE.