# MMORPG An MMORPG based on NodeJS, MongoDB and WebSockets ## Prerequisites Install Linux packages ``` sudo apt install curl mongodb ``` Install NodeJS ``` curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - ``` ``` sudo apt-get install -y nodejs ``` Start MongoDB ``` sudo service mongodb start ``` Move into project folder ``` cd /path/to/mmorpg ``` Install NodeJS-dependencies ``` npm install -d ``` ## Run ``` npm start ``` In a browser, go to: localhost:8000