Returns the manifest of a Windows Store application (Appx) as JavaScript object
This library requires PowerShell 5.0 (or higher) and support for the Windows Store
yarn add get-appx-manifest || npm install get-appx-manifest
getAppxManifest(appID: string, options: Object)
Example usage in script:
const getAppxManifest = require('get-appx-manifest');
// Application ID
const appID = 'SpotifyAB.SpotifyMusic';
(async () => {
try {
const manifest = await getAppxManifest(appID);
} catch (err) {
console.error(err);
}
})();
Default: utf8
Default: utf8
Default: false
Default: true
Default: Bypass
Default: true
This work is licensed under The MIT License