Steps to perform Installation Colyseus on Oracle Linux 7.6
wget http://nodejs.org/dist/v0.10.30/node-v0.10.30.tar.gz
gzip -d node-v0.10.30.tar.gz
tar xvf node-v0.10.30.tar
cd node-v0.10.30/
yum install gcc gcc-c++
./configure
make
make install
npm cache clean -f
npm install -g n
n stable
node -v
curl -L https://npmjs.org/install.sh | sh
Install browserify:
npm install browserify -g
TypeScript:
npm install typescript -g
Git install:
yum install git
Colyseus Examples:
git clone https://github.com/gamestdio/colyseus-examples.git
cd colyseus-examples
npm install
npm run bundle-colyseus-client
npm install
npm start
Go with your browser to http://server:2567
I needed to change he port in index.ts because my firewall permits other port
Now I want to run the servercode for the Nyancat demo: [https://github.com/colyseus/colyseus-hx/tree/master/example/NyanCat](NyanCat Example)
Currently the live demo works with ws://colyseus-examples.herokuapp.com
Is there a location where I can find the Nyancat Server Code to run the example to my own server?!?