{"id":16452270,"url":"https://github.com/jegj/protondb-cli","last_synced_at":"2026-03-16T07:35:11.462Z","repository":{"id":145630399,"uuid":"580597926","full_name":"jegj/protondb-cli","owner":"jegj","description":"A unofficial CLI for protondb project","archived":false,"fork":false,"pushed_at":"2024-11-11T06:53:17.000Z","size":10337,"stargazers_count":10,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-22T19:02:29.087Z","etag":null,"topics":["cli","nodejs","protondb"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jegj.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-21T00:36:06.000Z","updated_at":"2024-08-12T10:12:47.000Z","dependencies_parsed_at":"2023-10-17T11:42:56.782Z","dependency_job_id":"6bafde81-2e2c-4b25-860b-9370b93ffba1","html_url":"https://github.com/jegj/protondb-cli","commit_stats":null,"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jegj%2Fprotondb-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jegj%2Fprotondb-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jegj%2Fprotondb-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jegj%2Fprotondb-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jegj","download_url":"https://codeload.github.com/jegj/protondb-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243826788,"owners_count":20354220,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","nodejs","protondb"],"created_at":"2024-10-11T10:11:46.695Z","updated_at":"2026-03-16T07:35:11.455Z","avatar_url":"https://github.com/jegj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# protondb-cli\n\n[![CI](https://github.com/jegj/protondb-cli/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/jegj/protondb-cli/actions/workflows/build.yml)\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://standardjs.com/)\n[![view on npm](http://img.shields.io/npm/v/protondb-cli.svg)](https://www.npmjs.com/package/protondb-cli)\n[![license](http://img.shields.io/npm/l/protondb-cli.svg)](https://www.npmjs.com/package/protondb-cli)\n\nA simple unofficial CLI for [ProtonDB project](https://www.protondb.com/).\nLet's face it, if you know about ProtonDB you must love video\ngames and Linux and what better than an CLI for a Linux fan\nto check your games compatibility on Steam.\n\n![protondb-cli.gif](docs/imgs/readme.gif)\n\n## Installation\n\n```sh\nnpm i protondb-cli -g\n```\n\n## Usage\n\n```sh\nprotondb-cli \"Counter strike\"\n```\n\n### Tiers\n\nDescribe the support on Linux with ProtonDB\n\n| Tier      | Description                                                               |\n| :-------- | :------                                                                   |\n| Platinum  | Runs perfectly out of the box                                             |\n| Gold      | Runs perfectly after tweaks                                               |\n| Silver    | Runs with minor issues, but generally playable                            |\n| Bronze    | Runs, but often crashes or has issues preventing from playing comfortably |\n| Borked    | Either won't start or is crucially unplayable                             |\n| N/A       | Wihtout Tier. Comunity haven't report this game yet                       |\n\n### Confidence\n\nDescribe the support of the community under the tier\n\n## Using Docker\n\n```sh\ndocker pull jegj/protondb-cli\ndocker run -it --rm jegj/protondb-cli fifa\n```\n\n## Adding command \"protondb\" to your terminal\nBy adding the following code to your terminal (for example `~/.zshrc`), you can use it pretty easy.\n\n```sh\nprotondb() {\n    if [ -z \"$1\" ]; then\n        echo \"Usage: protondb \u003cgame_name\u003e\"\n        return 1\n    fi\n    docker pull jegj/protondb-cli\n    docker run -it --rm jegj/protondb-cli \"$1\"\n}\n```\n\nYou can also use the following command, to add it automatically into the rc file of your current shell (zsh or bash only).\n```sh\nrc=\"$HOME/.bashrc\"; [ -n \"$ZSH_VERSION\" ] \u0026\u0026 rc=\"$HOME/.zshrc\"; grep -q '^protondb()' \"$rc\" 2\u003e/dev/null \u0026\u0026 echo \"protondb function already exists in $rc – nothing to do.\" || { printf '\\nprotondb() {\\n    if [ -z \"$1\" ]; then\\n        echo \"Usage: protondb \u003cgame_name\u003e\"\\n        return 1\\n    fi\\n    docker pull jegj/protondb-cli\\n    docker run -it --rm jegj/protondb-cli \"$1\"\\n}\\n' \u003e\u003e \"$rc\" \u0026\u0026 echo \"protondb function has been installed in $rc\"; }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjegj%2Fprotondb-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjegj%2Fprotondb-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjegj%2Fprotondb-cli/lists"}