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).

GitHub - Reapimus/game-detect: A node.js library for detecting what game the user is currently playing
A node.js library for detecting what game the user is currently playing - Reapimus/game-detect
game-detect
A node.js library for detecting what game the user is playing. Latest version: 1.3.6, last published: 10 months ago. Start using game-detect in your project by running `npm i game-detect`. There are no other projects in the npm registry using game-detect.

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.

GitHub - Reapimus/game-detect-rs: A rust library for detecting what game the user is currently playing
A rust library for detecting what game the user is currently playing - Reapimus/game-detect-rs