get-appx-manifest

0.2.3 • Public • Published

get-appx-manifest

npm npm CircleCI David

Returns the manifest of a Windows Store application (Appx) as JavaScript object

Prerequisites

This library requires PowerShell 5.0 (or higher) and support for the Windows Store

Installation

yarn add get-appx-manifest || npm install get-appx-manifest

Usage

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);
    }
})();

Options

options.inputEncoding

Default: utf8

options.outputEncoding

Default: utf8

options.debugMsg

Default: false

options.verbose

Default: true

options.executionPolicy

Default: Bypass

options.noProfile

Default: true

Related

License

This work is licensed under The MIT License

Package Sidebar

Install

npm i get-appx-manifest

Weekly Downloads

1

Version

0.2.3

License

MIT

Unpacked Size

4.4 kB

Total Files

4

Last publish

Collaborators

  • idleberg