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
68.4
Supply Chain
99.2
Quality
75.9
Maintenance
100
Vulnerability
100
License
Rust (94.48%)
JavaScript (5.52%)
Total Downloads
2,729
Last Day
11
Last Week
12
Last Month
18
Last Year
265
21 Stars
135 Commits
5 Forks
3 Watching
8 Branches
2 Contributors
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%
11
Compared to previous day
Last week
200%
12
Compared to previous week
Last month
-10%
18
Compared to previous month
Last year
-46%
265
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
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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 2024-12-23
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