@xhmikosr/decompress-pkg
v0.1.0
Published
macOS .pkg (XAR) archive decompress plugin
Maintainers
Readme
@xhmikosr/decompress-pkg

macOS
.pkg(XAR + cpio) decompress plugin
Reads a .pkg buffer and returns the archive entries. A macOS Installer package is a XAR shell whose actual contents live in a gzip-compressed cpio archive named Payload. This plugin unwraps the XAR and, when present, expands the Payload so callers receive the real installer files instead of the opaque archive blob. Both cpio variants found in .pkg files are supported: odc (POSIX portable, octal headers) and newc (new portable, hex headers). Raw XAR files without a Payload are also handled.
Only regular files and directories are extracted; hardlinks, symlinks, fifos, device nodes, and macOS AppleDouble sidecars (._file) are skipped.
Install
npm install @xhmikosr/decompress-pkgUsage
import {promises as fs} from 'node:fs';
import decompress from '@xhmikosr/decompress';
import decompressPkg from '@xhmikosr/decompress-pkg';
const data = await fs.readFile('myapp.pkg');
await decompress(data, 'output', {
plugins: [
decompressPkg()
]
});API
decompressPkg()(input)
Returns a Promise that resolves to an array of file objects. Returns an empty array if input is not a XAR archive (wrong magic bytes or malformed header).
Throws TypeError if input is not a Buffer.
A Payload entry that fails to gunzip, or whose decompressed contents are not a recognized cpio stream, is returned as-is rather than dropped so the plugin stays useful for non-installer XAR files.
input
Type: Buffer
Buffer of the .pkg file contents.
file object
Each entry has the following properties:
dataBuffer- File contents. EmptyBufferfor directories.modenumber- POSIX mode bits. Defaults to0o755when the entry has no<mode>or an invalid one.mtimeDate- Modification time. Falls back to the Unix epoch when the entry has no<mtime>or an invalid one.pathstring- POSIX path. Directories end with/. Path traversal segments (..) and both/and\separators are stripped. Entries unpacked from aComponent.pkg/Payloadare rebased underComponent.pkg/.typestring- Either'file'or'directory'.
License
MIT © XhmikosR
