This is a command-line tool written in TypeScript to fetch iOS app information, including the app name, version, and release date, from the App Store.
※日本ストアのみ対応
- Fetch app name, version, and release date from the App Store.
- Supports verbose logging for debugging.
- Accepts the App Store app ID as a command-line argument.
- Supports JSON output format for app information.
- Node.js (v23 or later)
- npm (v10 or later)
- Clone this repository:
git clone <repository-url>
- Navigate to the project directory:
cd apple-app-version-checker - Install dependencies:
npm install
Run the script with the following command:
npm start -- --appId <APP_ID> [--verbose] [--format json]--appIdor-a: The App Store app ID (required).--verboseor-v: Enable verbose logging (optional).--format jsonor-f json: Output app information in JSON format (optional).
Fetch information for an app with ID 374254473:
npm start -- --appId 374254473 --verboseFetch information for an app with ID 374254473 and output it in JSON format:
npm start -- --appId 374254473 --format jsonTo build the project:
npm run buildTo run the project:
npm startThis project is licensed under the MIT License.