0.0.2 • Published 3 years ago

@leaphant/nap.js v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

nap.js – Not A PP Calculator

osu! api wrapper and helper library for all modes (heavily W.I.P.)

Roadmap

  • API wrapper
    • osu! api v1
    • osu! api v2
  • pp calculation
    • standard
    • taiko (untested)
    • catch (untested)
    • mania (untested)
  • beatmap parsing
  • difficulty calculation
  • beatmap rendering
  • replay analyzation

Installation

npm i @leaphant/nap.js

Usage Examples

Calculating pp for a recent score from osu! api v1.

import fetch from 'node-fetch';
import { std_ppv2 } from 'nap.js';

const API_KEY = 'put api key here'; // osu! api v1 key
const USER = '1023489';

(async () => {
  const response = await fetch(`https://osu.ppy.sh/api/get_user_recent?k=${API_KEY}&u=${USER}&limit=1`);
  const json = await response.json();
  const [score] = json;

  const pp = new std_ppv2().setPerformance(score);

  console.log(await pp.compute())
  /* => {
    aim: 108.36677305976224,
    speed: 121.39049498160061,
    fl: 514.2615576494688,
    acc: 48.88425340242263,
    total: 812.3689077733752
  } */
})();