Multiplayer space game built on Node, Socket.io and AngularJS.
Assuming debian linux.
Install git
sudo apt-get update
sudo apt-get install git
Install Node.js
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install nodejs
Install project dependencies
npm install
Now the server can be started using the command:
DEBUG=app:* PORT=80 npm start
Improve hit detection to use separating axis theorm. See: http://gamedevelopment.tutsplus.com/tutorials/collision-detection-using-the-separating-axis-theorem--gamedev-169
Change laser to shoot more smoothly across screen when rotated.