Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voltrexkeyva/steam-sysreq
Gets system requirement information to compare to the ones shown in Steam.
https://github.com/voltrexkeyva/steam-sysreq
steam version
Last synced: 2 months ago
JSON representation
Gets system requirement information to compare to the ones shown in Steam.
- Host: GitHub
- URL: https://github.com/voltrexkeyva/steam-sysreq
- Owner: VoltrexKeyva
- License: mit
- Created: 2022-03-25T22:51:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-02T22:48:58.000Z (about 1 year ago)
- Last Synced: 2024-10-06T12:48:49.184Z (4 months ago)
- Topics: steam, version
- Language: TypeScript
- Homepage: https://npmjs.com/package/steam-sysreq
- Size: 76.2 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Steam SysReq
Gets system requirement information to compare to the ones shown in Steam.
# Usage
```js
import getSteamSysReq from 'steam-sysreq';const steamSysReq = await getSteamSysReq();
console.log(steamSysReq);
```Example output:
```js
{
os: 'Linux 5.19.0-23-generic (Ubuntu 22.10)',
processor: 'Intel Pentium® 6405U @ 2.40GHz',
ram: '8 GB',
graphics: [
'Intel Corporation Comet Lake-U GT2 [UHD Graphics 620]',
'NVIDIA Corporation GM108M [GeForce MX130]'
],
availableDiskSpace: '644 GB'
}
```