
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
game-status
Advanced tools
A library to fetch detailed video game information, including system requirements, reviews, DRM status, and more.
A simple, dependency-free JavaScript library for getting detailed information and status about video games from a local database.
This library provides quick access to data such as genre, description, system requirements, release price, piracy status (including DRM and cracking group), and more, without the need for external API calls.
The library uses a local, static database of games. You can find a complete list of all included game titles and their corresponding IDs in the following file:
This file is useful for finding the correct gameId to use with functions like getGameById().
Install the package using npm:
npm install game-status
Import the library into your project and start using the exported functions.
// Using CommonJS (require)
const gameDB = require('game-status');
// --- Example 1: Get a single game by its ID ---
const cyberpunk = gameDB.getGameById("cyberpunk-2077");
console.log(cyberpunk);
// --- Example 2: Get all games of a specific genre ---
const rpgGames = gameDB.getGamesByGenre("Action RPG");
console.log(rpgGames);
// --- Example 3: Find all games cracked by a specific group ---
// Search is case-insensitive
const empressCracks = gameDB.findGamesCrackedBy("empress");
console.log(empressCracks);
A call to getGameById("cyberpunk-2077") will return a formatted string like this:
id: cyberpunk-2077
Title: Cyberpunk 2077
Release Year: 2020
Genre: Action RPG, Open World
Description: An open-world, action-adventure story set in Night City, a megalopolis obsessed with power, glamour and body modification.
Release Price: 59.99 EUR
PC requirements:
Minimum requirements: CPU: Core i7-6700; RAM: 12 GB; GPU: GTX 1060 6GB
Recommended requirements: CPU: Core i7-12700; RAM: 16 GB; GPU: RTX 2060 SUPER
Reviews: Source: Steam; Percentage: 83; Count: 568450
Playtime: Main story: 25 hours; Completionist: 105 hours
Piracy status: Cracked: true; DRM: Steam; Cracked by: CODEX
All functions return a formatted string or a list of formatted strings.
getGameById(gameId): Finds a single game by its unique ID (e.g., "cyberpunk-2077").getGameByTitle(gameTitle): Finds the first game that matches the exact title (case-insensitive).getGames(): Returns a formatted list of all games in the database.getGamesByGenre(genre): Returns all games that include the specified genre.getCrackedGames(): Returns all games with a piracy status of cracked: true.getUncrackedGames(): Returns all games with a piracy status of cracked: false.getGameByReleaseYear(year): Returns all games released in a specific year.getGameByPriceRange(min, max): Returns all games with a release price between min and max.getByDRM(drmType): Returns all games that use a specific DRM protection.findGamesCrackedBy(crackerGroup): Returns all games cracked by a specific group.This is an open-source project. Contributions to expand the database or improve the functions are welcome. Please feel free to open an issue or submit a pull request on GitHub.
FAQs
A library to fetch detailed video game information, including system requirements, reviews, DRM status, and more.
We found that game-status demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.