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 impact
Then copy it to the root of your game's path and run it:
./impact
Run the following to install the server:
go get github.com/geetarista/impact
Then just start the server:
impact
The default port the server will listen on is 8080, but you can override that like so:
PORT=8888 impact
To run the tests, you just need Go installed on your system and just run:
go test
This 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
.