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 2 months 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-10T15:47:32.000Z (over 1 year ago)
- Last Synced: 2025-03-03T14:48:52.502Z (3 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://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).