npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

lookatmyscore

v1.0.5

Published

https://lookatmyscor.re is a website / tool developed by [omkelderman][omkelderman] <br/> Used to dynamically generate images from Osu! scores.

Readme

lookatmysco.re Nodejs wrapper

https://lookatmysco.re is a website / tool developed by omkelderman Used to dynamically generate images from Osu! scores.


Features

  • Make dynamically created topplay cards for pleasurable viewing!

Installing

Using npm:

$ npm install lookatmyscore

Examples

Usage

const lookatmyscore = require('lookatmyscore');

const JSON = {
    mode: 0, // 0 = osu!std, 1 = osu!taiko, 2 = osu!catch, 3 = osu!mania
    beatmap_id: '2469345', // Osu Beatmap ID 
    score: {
        username: 'WhiteCat',
        date: '2020-06-28 18:39:24',
        enabled_mods: 600, // Bitmask of mods, look https://github.com/ppy/osu-api/wiki#mods
        score: '4930126',
        maxcombo: '464',
        rank: 'SH', // accepted types are XH, X, SH, S, A, B, C or D 
        count50: '0',
        count100: '7',
        count300: '330',
        countmiss: '0',
        countkatu: '6',
        countgeki: '95',
        pp: '1089.33' // floats are always rounded to 2 decimal places
    }
}

const res = await lookatmyscore(JSON)
console.log(res.image.url) // Prints the image url

NOTE: Supplied JSON must be structured like in the example above, else API will hit you with status code 400.


Output

{
    result: 'image',
    image: {
        id: '758c7563-8ff6-4ac2-b0ba-24cb89d36ea6', // Unique image ID
        url: 'https://nicesco.re/758c7563-8ff6-4ac2-b0ba-24cb89d36ea6.png' // Unique image permalink
    }
}

Disclaimer

This project is in no way affiliated with Osu! in any way!