Note: This is a substantially refactored fork of MWERT. The overall framework is the same, but we extract a lot of shared code into the sharedUtils directory, which is imported as a base by all of the individual experiments.
-
Git is a popular version control and source code management system. If you're new to git, you'll need to install the latest version by following the link for Mac or Windows and downloading the first option in the list. On Mac, this will give you a set of command-line tools (restart the terminal if the git command is still not found after installation). On Windows it will give you a shell to type commands into. For Linux users, more information can be found here.
-
On Mac or Linux, use the Terminal to navigate to the location where you want to create your project, and enter
git clone https://github.com/hawkrobe/reference_games.gitat the command line to create a local copy of this repository. On Windows, run this command in the shell you installed in the previous step.
-
Install node and npm (the node package manager) on your machine. Node.js sponsors an official download for all systems. For an advanced installation, there are good instructions here.
-
Navigate into the repository you created. You should see a file called package.json, which contains the dependencies. To install these dependencies, enter
npm installat the command line. This may take a few minutes. -
Finally, to run the experiment of your choice, navigate into the experiments directory and type
node app.js <experimentName>at the command line. You should expect to see the following message:info - socket.io started :: Express :: Listening on port 8888This means that you've successfully created a 'server' that can be accessed by copying and pasting
http://localhost:8888/<experimentName>/index.htmlin one tab of your browser. To connect the other player in another tab for test purposes, open a new tab and use the same URL. Repeat as many times as you'd like!