# get-win-software

> Obtaining information about installed programs of the Windows operating system.

Latest version **0.1.3** (published 2022-12-16) · gpl-3.0 license · 0 weekly downloads

## Install

```sh
npm install get-win-software
pnpm add get-win-software
yarn add get-win-software
bun add get-win-software
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2022-12-16 |
| First published | 2022-12-14 |
| Weekly downloads | 0 |
| License | gpl-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 6.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Skrike |
| Maintainers | skrike |
| Keywords | installed, software, windows, uninstall, apps |

## Links

- npm: https://www.npmjs.com/package/get-win-software
- Repository: https://github.com/skrike/get-win-software
- Homepage: https://github.com/skrike/get-win-software/tree/master#readme
- Issues: https://github.com/skrike/get-win-software/issues
- npm.io page: https://npm.io/package/get-win-software

## Dependencies (2)

- [regedit](https://npm.io/package/regedit.md) ^5.1.1
- [cli-progress](https://npm.io/package/cli-progress.md) ^3.11.2

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2022-12-16
- 0.1.2 — 2022-12-15
- 0.1.1 — 2022-12-14
- 0.1.0 — 2022-12-14

## README

# get-win-software
[Install](https://github.com/skrike/get-win-software#install) | [Functions](https://github.com/skrike/get-win-software#functions) | [Roadmap](https://github.com/skrike/get-win-software#roadmap) | [Example](https://github.com/skrike/get-win-software#example) | [Updates](https://github.com/skrike/get-win-software#updates)

<sub>Если можете помочь с правильным переводом на английский язык, буду премного благодарен. Использовался Google Translate</sub>

Obtaining information about installed programs of the Windows operating system.

# Install
```
npm i get-win-software
```

# Functions
| Name of Function  | Description |
| ------------- | ------------- |
| `GetWinSoftware.getAIS()`  | Getting an array of objects with a description of installed programs. Each element contains *DisplayName*, *Publisher*, *DisplayVersion*. If there is *InstallLocation* data.  |
| `GetWinSoftware.getAISCustom()`  | Function for custom data output.  |
| `GetWinSoftware.saveToFile()`  | Function for save data to a file.  |

# Roadmap
- [ ] Add information about Google Chrome
- [ ] Optimize script performance
- [x] Push package to NPM

# Example
> **Example 1** - With custom properties
```javascript
const gws = require('get-win-software')

gws.getAIS([
    ['uninstall', 'UninstallString']
]).then(res => {
    console.log(res[0])
})
```

> **Example 2** - Get all installed software
```javascript
const gws = require('get-win-software')

gws.getAIS().then(res => {
    console.log(res[0])
})
```

# Updates
| Date  | Version | Decription  |
| ------------- | ------------- | ------------- |
| 12/16/2022  | 0.1.3  | Added savetoFile() function to save data to a file.  |
| 12/15/2022  | 0.1.2  | Changed directory structure. Renamed function names (getAllInstalledSoftware() > getAIS()). Added getAISCustom() function for custom data output.  |

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