osu-lib
v1.0.1
Published
某リズムゲームの非公式 API 。
Readme
Attention : This is An Unofficial API for a certain Rhythm Game called Osu .
🚀 Current Features
- Getting Account Data
- Getting Account First Place ( Beatmaps )
- Getting Account Best Plays ( Beatmaps )
- Getting Account Recent Plays
- etc
🚀 Requirements
🚀 Quick Setup
- Install
GitandNodeJS - Clone Repository
git clone https://github.com/andhkdwmln/osu-lib - Move to directory
cd osu-lib - Install required module
npm install - Build
npm run build - Compiled code inside
libfolder
🚀 Usage
const { Osu } = require('./lib/index');
const bot = new Osu();
(async () => {
const userdata = await bot.userData('peppy');
console.log(userdata);
})();