# fn-replay-parser

> Parse Fortnite replays

Latest version **1.1.3** (published 2021-04-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install fn-replay-parser
pnpm add fn-replay-parser
yarn add fn-replay-parser
bun add fn-replay-parser
```

## 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.1.3 |
| Published | 2021-04-30 |
| First published | 2021-04-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 126.1 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Remo Blaser |
| Maintainers | remoblaser |

## Links

- npm: https://www.npmjs.com/package/fn-replay-parser
- Repository: https://github.com/remoblaser/fn-replay-parser
- Homepage: https://github.com/remoblaser/fn-replay-parser#readme
- Issues: https://github.com/remoblaser/fn-replay-parser/issues
- npm.io page: https://npm.io/package/fn-replay-parser

## Dependencies (3)

- [fs](https://npm.io/package/fs.md) ^0.0.1-security
- [crypto](https://npm.io/package/crypto.md) ^1.0.1
- [typescript](https://npm.io/package/typescript.md) ^4.2.4

## Recent versions

- 1.1.3 (latest) — 2021-04-30

## README

# Fortnite Replay Parser

Library to parse Fortnite replays.

```ts
import { readFileSync } from "fs";
import { FortniteReplayParser } from "fn-replay-parser";

const file = readFileSync("path/to/my.replay");
const parser = new FortniteReplayParser(file);

const replay = parser.parse();

console.log(replay.replayMeta);
console.log(replay.header);
console.log(replay.playerStats);
console.log(replay.teamStats);
console.log(replay.eliminations);
```

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