Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minhducsun2002/node-osr-parser
A library to read osu! replay files
https://github.com/minhducsun2002/node-osr-parser
nodejs npm osr osu osu-libraries osugame
Last synced: about 1 month ago
JSON representation
A library to read osu! replay files
- Host: GitHub
- URL: https://github.com/minhducsun2002/node-osr-parser
- Owner: minhducsun2002
- License: mit
- Created: 2020-01-12T04:48:57.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-10T15:47:32.000Z (over 1 year ago)
- Last Synced: 2024-10-31T17:57:38.006Z (2 months ago)
- Topics: nodejs, npm, osr, osu, osu-libraries, osugame
- Language: TypeScript
- Homepage: https://minhducsun2002.github.io/node-osr-parser/
- Size: 347 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `node-osr-parser`
![](https://img.shields.io/github/actions/workflow/status/minhducsun2002/node-osr-parser/TypeScript%20compilation)
![](https://img.shields.io/github/actions/workflow/status/minhducsun2002/node-osr-parser/Jest%20tests?label=tests)
[![](https://img.shields.io/npm/v/@minhducsun2002/node-osr-parser)](https://www.npmjs.com/package/@minhducsun2002/node-osr-parser)
###### Another library to parse osu! replays### Usage
```ts
import { Replay } from 'node-osr-parser';
// CommonJS
const { Replay } = require('node-osr-parser');const a : Buffer = readFileSync('your/osr/file');
new Replay(a).deserialize().then(replay => console.log(replay.player));
```### License
MIT license. See [here](./LICENSE).