npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

game-tier

v1.0.1

Published

A CLI for looking up Steam review scores and Xiaoheihe ratings by game name.

Downloads

75

Readme

Game Tier

项目截图

Game Tier 是一个游戏评分查询工具,支持 Web 页面和命令行两种形态。输入游戏名称后,会查询 Steam 评价和小黑盒评分,并按普通、优秀、稀有、史诗、传奇展示结果。

  • GitHub Repo: https://github.com/holynova/game-rating-lookup
  • GitHub Pages: https://holynova.github.io/game-rating-lookup/
  • npm: https://www.npmjs.com/package/game-tier

Web Demo

装备鉴定台 Demo 分享卡片

移动端优先的在线版本:打开页面后输入一个或多个游戏名即可查询。

CLI

安装

全局安装:

npm install -g game-tier

也可以不安装,直接运行:

npx game-tier Hades

基本使用

查询单个游戏:

game-tier Hades

一次查询多个游戏:

game-tier Hades "Elden Ring" "Cyberpunk 2077"

从文件读取游戏名,每行一个:

game-tier --file games.txt

输出原始 JSON:

game-tier --json Hades

缓存与历史

CLI 会默认缓存查询结果,避免重复请求。

查看历史:

game-tier history

按等级筛选历史:

game-tier history --grade gold

可用等级:

white  普通
green  优秀
blue   稀有
purple 史诗
gold   传奇

强制刷新,不使用旧缓存:

game-tier --refresh Hades

本次查询不读写缓存:

game-tier --no-cache Hades

清空缓存:

game-tier cache clear

参数

--file <path>       从文本文件读取游戏名
--json              输出原始 JSON
--refresh           忽略缓存并重新查询
--no-cache          不读取或写入缓存
--no-color          禁用终端颜色
--limit <number>    批量查询上限,默认 12
--help              显示帮助

示例文件

games.txt:

Hades
Elden Ring
Cyberpunk 2077

运行:

game-tier --file games.txt --limit 3