Game Detect
A node.js library for detecting what game the user is currently playing
Game Detect is a node package I wrote specifically for detecting what game the user is currently playing on their device. Created to solve use cases where you need to do something like showing game presence in a chatting service or app.
It works by interacting with methods game launchers like Steam or Gamejolt provide that expose what games the user launched from them. In cases like Roblox or Minecraft it does a bit more complex logic by either scanning the process list (Minecraft) or checking the logs (Roblox, for what game on Roblox is currently being played).

I have also been in the process of writing an alternative, more experimental Rust port of Game Detect which should function roughly the same as the js version.