The module allows to read properties from the MSI installer.
npm install msi-props-readerThe module allows to read properties from the MSI installer.
At the moment, the module supports browser environment only.
npm install msi-props-readerjavascript
import { MsiPropsReader } from 'msi-props-reader';const reader = new MsiPropsReader();
await reader.initialize(FILE);
const props = reader.getProperties();
console.log(props['ProductCode']);
``