# find-steam-app

> Find location of an installed Steam app

Latest version **1.0.2** (published 2019-03-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install find-steam-app
pnpm add find-steam-app
yarn add find-steam-app
bun add find-steam-app
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-03-18 |
| First published | 2019-01-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 11 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 8 |
| Author | ark120202 |
| Maintainers | ark120202 |
| Keywords | app, appid, search, steam, valve |

## Links

- npm: https://www.npmjs.com/package/find-steam-app
- Repository: https://github.com/ark120202/find-steam-app
- npm.io page: https://npm.io/package/find-steam-app

## Dependencies (5)

- [execa](https://npm.io/package/execa.md) ^1.0.0
- [tslib](https://npm.io/package/tslib.md) ^1.9.3
- [fs-extra](https://npm.io/package/fs-extra.md) ^7.0.1
- [p-filter](https://npm.io/package/p-filter.md) ^2.0.0
- [vdf-extra](https://npm.io/package/vdf-extra.md) ^2.2.2

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2019-03-18
- 1.0.1 — 2019-01-17
- 1.0.0 — 2019-01-17

## README

# find-steam-app

> Find location of an installed Steam app

## Usage

```js
const {
  findSteam,
  findSteamAppById,
  findSteamAppByName,
  findSteamAppManifest,
  findSteamLibraries,
} = require('find-steam-app');

await findSteamAppById(570);
// => '/path/to/steam/steamapps/common/dota 2 beta'

await findSteamAppByName('dota 2 beta');
// => '/path/to/steam/steamapps/common/dota 2 beta'

await findSteam();
// => '/path/to/steam'

await findSteamLibraries();
// => ['/path/to/steam/steamapps', '/path/to/library/steamapps']

await findSteamAppManifest(570);
// => { appid: 570, Universe: 1, name: 'Dota 2', ... }
```

For more information about manifest, see [manifest.ts](src/manifest.ts)

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