Gathering detailed insights and metrics for @equal-games/game-scanner
Gathering detailed insights and metrics for @equal-games/game-scanner
Gathering detailed insights and metrics for @equal-games/game-scanner
Gathering detailed insights and metrics for @equal-games/game-scanner
npm install @equal-games/game-scanner
Typescript
Module System
Min. Node Version
Node Version
NPM Version
Rust (94.48%)
JavaScript (5.52%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
23 Stars
135 Commits
6 Forks
2 Watchers
8 Branches
2 Contributors
Updated on Jul 04, 2025
Latest Version
1.1.4
Package Id
@equal-games/game-scanner@1.1.4
Unpacked Size
21.85 MB
Size
8.17 MB
File Count
11
NPM Version
6.14.16
Node Version
12.22.11
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
Game Scanner for any launcher and OS.
You can find the Rust data structure in prelude.rs, and the Javascript data structure in index.d.ts.
Launcher | Multi-directories¹ | Windows | Linux | MacOS |
---|---|---|---|---|
Amazon | ✅ | ✅ | ❌ | ❌ |
Blizzard | ❓ | ✅ | ❌ | ❌ |
Epic Games | ❌ | ✅ | ❌ | ✅ |
GOG | ❌ | ✅ | ❌ | ✅ |
Origin | ❌ | ✅ | ❌ | ✅ |
Riot Games | ❓ | ✅ | ❌ | ✅ |
Steam | ✅ | ✅ | ❌ | ✅ |
Ubisoft | ❌ | ✅ | ❌ | ❌ |
[1]: Multi-directories: is different game install locations (e.g., folders, and drivers).
Launcher | Install | Launch | Uninstall |
---|---|---|---|
Amazon | ❌ | ✅ | ❌ |
Blizzard | ❌ | ✅ | ❌ |
Epic Games | ❌ | ✅ | ❌ |
GOG | ❌ | ✅ | ❌ |
Origin | ✅ | ✅ | ❌ |
Riot Games | ❌ | ✅ | ✅ |
Steam | ✅ | ✅ | ✅ |
Ubisoft | ✅ | ✅ | ✅ |
Launcher | Installed | Needs Update | Downloading | Total Bytes | Received Bytes |
---|---|---|---|---|---|
Amazon | ❌ | ❌ | ❌ | ❌ | ❌ |
Blizzard | ❌ | ❌ | ❌ | ❌ | ❌ |
Epic Games | ❌ | ❌ | ❌ | ❌ | ❌ |
GOG | ❌ | ❌ | ❌ | ❌ | ❌ |
Origin | ❌ | ❌ | ❌ | ❌ | ❌ |
Riot Games | ❌ | ❌ | ❌ | ❌ | ❌ |
Steam | ✅ | ✅ | ✅ | ✅ | ✅ |
Ubisoft | ❌ | ❌ | ❌ | ❌ | ❌ |
Launcher | List Games | Find Game¹ | Get launcher executable |
---|---|---|---|
Amazon | ✅ | ✅ | ✅ |
Blizzard | ✅ | ✅ | ✅ |
Epic Games | ✅ | ✅ | ✅ |
GOG | ✅ | ✅ | ✅ |
Origin | ✅ | ✅ | ✅ |
Riot Games | ✅ | ✅ | ✅ |
Steam | ✅ | ✅ | ✅ |
Ubisoft | ✅ | ✅ | ✅ |
[1]: Find Game: you can find for a specific game passing only the id
.
Launcher | Launch | Get Processes | Close |
---|---|---|---|
Amazon | ✅ | ❓ | ❓ |
Blizzard | ✅ | ❓ | ❓ |
Epic Games | ✅ | ❓ | ❓ |
GOG | ✅ | ❓ | ❓ |
Origin | ✅ | ❓ | ❓ |
Riot Games | ✅ | ❓ | ❓ |
Steam | ✅ | ✅ | ✅ |
Ubisoft | ✅ | ❓ | ❓ |
[1]: Game Processes: return a list with all Id
or PID
of processes from a specific
game.
1const game_scanner = require("@equal-games/game-scanner"); 2 3const games = game_scanner.steam.games(); 4 5// [{ 6// _type: 'steam', 7// id: '945360', 8// name: 'Among Us', 9// path: 'C:\\Program Files (x86)\\Steam\\steamapps\\common\\Among Us', 10// commands: { install: [Array], launch: [Array], uninstall: [Array] }, 11// state: { 12// installed: true, 13// needs_update: true, 14// downloading: true, 15// total_bytes: 39626416, 16// received_bytes: 0 17// } 18// }] 19
1const game_scanner = require("@equal-games/game-scanner"); 2 3const games = game_scanner.steam.find('945360'); 4 5// { 6// _type: 'steam', 7// id: '945360', 8// name: 'Among Us', 9// path: 'C:\\Program Files (x86)\\Steam\\steamapps\\common\\Among Us', 10// commands: { install: [Array], launch: [Array], uninstall: [Array] }, 11// state: { 12// installed: true, 13// needs_update: true, 14// downloading: true, 15// total_bytes: 39626416, 16// received_bytes: 0 17// } 18// } 19
1const game_scanner = require("@equal-games/game-scanner"); 2 3const game = game_scanner.steam.games().find(game => !game.state.installed); 4 5game_scanner.mananger.install_game(game); 6 7game_scanner.mananger.uninstall_game(game); 8
1const game_scanner = require("@equal-games/game-scanner"); 2 3const game = game_scanner.steam.games().find(game => game.state.installed); 4 5game_scanner.mananger.launch_game(game); 6// After 30 seconds 7game_scanner.mananger.close_game(game); 8
npm config set msvs_version 2019
npm config set python python2.7
If you are interested in contributing to the project, please take a look at the Code of Conduct.
This project is licensed under the terms of the MIT license.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 1
Details
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
11 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More