# msi-props-reader

> The module allows to read properties from the MSI installer.

Latest version **1.0.1** (published 2021-09-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install msi-props-reader
pnpm add msi-props-reader
yarn add msi-props-reader
bun add msi-props-reader
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2021-09-23 |
| First published | 2021-09-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >= 0.8.0 |
| Dependencies | 0 |
| Unpacked size | 65.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Mikhail Chuveiko |
| Maintainers | chaelchu |
| Keywords | installer, msi |

## Links

- npm: https://www.npmjs.com/package/msi-props-reader
- Repository: https://github.com/ChaelChu/msi-props-reader
- Issues: https://github.com/ChaelChu/msi-props-reader/issues
- npm.io page: https://npm.io/package/msi-props-reader

## Recent versions

- 1.0.1 (latest) — 2021-09-23
- 1.0.0 — 2021-09-23

## README

# msi-props-reader

The module allows to read properties from the MSI installer. 
At the moment, the module supports browser environment only.

## Getting Started
Install the module with: `npm install msi-props-reader`

## Examples
To get properties just use this code:
```javascript
import { MsiPropsReader } from 'msi-props-reader';

const reader = new MsiPropsReader();
await reader.initialize(FILE);
const props = reader.getProperties();
console.log(props['ProductCode']);
```
There "FILE" is file object provided by \<input\>

## License
Copyright (c) 2021 ChaelChu  
Licensed under the MIT license.

---
_Source: https://npm.io/package/msi-props-reader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
