Pick the game night game easily with a venn diagram of your friends' steam games
This is Vennt, a browser-based web toy for finding out what games you and your friends have in common. Good for easily finding something you can all play on game night or just for finding out who has the best taste in games. It makes venn diagrams, because they're pretty and because the terrible pun name was too good to pass up.
Vennt is written in JS and Node using Nuxt - a Vue server side framework - for the site and Express for the API backend.
The API in turn makes requests to the Steam APIs while keeping to their fairly restrictive rate limit rules, which is why it can occasionally be a bit slow to respond. Requests are cached for a limited time, but Vennt isn't much use if it isn't up to date. It only ever gets public data from Steam - private profiles are marked as such in the UI and not queried.
The original tag database is pulled from SteamSpy's API, and then kept up to date with queued requests to the (even more rate limited) Steam store API as necessary. This means that if you own a game Vennt has never seen before, it may display incorrect tags for it until the next time you visit.
# install dependencies
$ npm install # Or yarn install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm start
To easily deploy steam-vennt to your server, you can either use the prebuilt image or build your own.
docker run -p 3000:3000 -e STEAM_API_KEY=YourSteamApiKey -v vennt-sqlite:/app/sqlite gerwim/steam-vennt
- Clone this git repository
- Build the image:
docker build -t steam-vennt .
- Run it:
docker run -p 3000:3000 -e STEAM_API_KEY=YourSteamApiKey -v vennt-sqlite:/app/sqlite steam-vennt