Inspired by Cine2Nerdle's battle mode, travel between Steam games based on developer, publisher and tags!
Documentation is still being worked on, but in the meantime here's where you can find the following:
Scraped List of Tags
my-app/src/scripts/scrapedTags.json
Game IDs, by Simplified Name of App
server/game_name_to_ids.json
App IDs that Experienced Errors During Retrieval
server/skipped_ids.json
Database of Games
server/game_database.json
Run the game server by running the following in the /server/
directory:
node tagteam-server.js
Then running the following in the /my-app/src/
directory:
npm start
If you haven't already, you'll need to install node.js and npm.
You'll also want to run npm install react-scripts --save
to install react-scripts.
npm start
will run the game, but to properly host it locally run npm install -g serve
then run the following from the /my-app/
directory:
serve -s build
(This will launch much faster)