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

@seayoo-web/app-info

v1.0.1

Published

app info parser

Downloads

35

Readme

app-info

读取 .apk .ipa .app 的应用元信息

读取 apk 文件

import { AndroidAppParser } from "@seayoo-web/app-info";

// file 类型 Uint8Array | ArrayBuffer | Blob;
const parser = new AndroidAppParser(file);
const appInfo = await parser.parse();

if (appInfo instanceof Error) {
  console.log("apk parse error", appInfo.message);
} else {
  console.log(appInfo);
  /**
  {
   "package": "...",
   "versionCode": 9999,
   "versionName": "9999.0.0",
   "icon": "...",
   "manifest": {...}
  */
}

const fileContent = await parser.readFile("AndroidManifest.xml", "text");

读取 ipa 文件

import { IosAppParser } from "@seayoo-web/app-info";

// 由于资源保护,.ipa 文件不解析图标资源
const parser = new IosAppParser(file);
const appInfo = await parser.parse();

if (appInfo instanceof Error) {
  console.log("ipa parse error", appInfo.message);
} else {
  console.log(appInfo);
  /**
  {
   "package": "...",
   "versionCode": 9999,
   "versionName": "9999.0.0",
   "icon": "...",
   "plist": {...},
  }
  */
}

// 读取指定模块的 plist 信息
const frameworkPlist = await parser.parseFramework("ComboSDKSentry");
if (frameworkPlist instanceof Error) {
  console.log("ComboSDKSentry parse error", frameworkPlist.message);
} else {
  console.log(frameworkPlist);
}

// 读取指定文件
const fileContent = await parser.readFile("ComboConfig.json", "text");

读取鸿蒙 app 文件

import { HosAppParser } from "@seayoo-web/app-info";

const parser = new HosAppParser(file);
// 设置 ignoreIcon: true 可以忽略图标解析以节约解析时间
const appInfo = await parser.parse({ ignoreIcon: false });

if (appInfo instanceof Error) {
  console.log("hos app parse error", appInfo.message);
} else {
  console.log(appInfo);
  /**
  {
   "package": "...",
   "versionCode": 9999,
   "versionName": "9999.0.0",
   "icon": "...",
   "pack": {...},
  }
  */
}
// 读取 app 下文件
const fileContent = await parser.readFile("pack.info", "blob");
// 读取主包下的文件
const fileContent = await parser.readEntryHapFile("pkgInfo.json", "text");