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

minikeys

v0.3.0

Published

A javascript library that plays the piano

Readme

MiniKeys

A tiny javascript library that plays the piano. Try it out here!

To use MiniKeys in a React app, you can use components from @minikeys/react

Install

$ yarn add minikeys
# OR
$ npm install minikeys

Using MiniKeys

Basic Setup

First, instantiate a new instance of MiniKeys, then call loadNotes with a list of sample audio files. You can then call playNote with either the midi note value or the note name (A3, C#4 etc.)

const miniKeys = new MiniKeys();

miniKeys.loadNotes([
  {
    note: 'A#2',
    url: '/samples/a2.ogg
    velocity: 'piano'
  },
  {
    note: 'A#6',
    url: '/samples/a6.ogg
    velocity: 'piano'
  },
])

miniKeys.playNoteFromName('C#4')

MiniKeys works with any number of samples. When a note is played, MiniKeys finds the closest loaded sample and tunes it to the correct frequency.

Main Functions

loadNotes

loadNotes takes an array of Samples objects, where note is the name of the note and velocity is if the sample is a soft (piano) or hard (forte) sample.

{
    note: NoteName; // 'A4', 'C#3' etc.
    url: string;
    velocity: Velocity; // 'piano' or 'forte'
}[]

loadNotes returns a Promise that resolves when all notes are loaded or if there is an error. You can provide loadNotes with a callback function to handle progress updates.

playNoteFromMidi

playNoteFromMidi takes a midi note (0-127), and a velocity value (0-127). The sample closest to the midi value is chosen, and is pitch shifted to play the correct note. The volume and correct dynamic (piano or forte) is chosen based on the velocity.

playNoteFromName

This does the same as playNoteFromMidi, but with note names (A3, C#4 etc.)

setSustain

This function takes a boolean value and behaves the same as a sustain pedal on a piano. If it sustain is set to true notes are held (including already played notes), if sustain is set to false notes are faded out (including already played notes)

Keyboard Functions

Various functions are provided for interacting with MiniKeys through the keyboard. Full documentation is coming soon!

Finding Samples

Pianobook is a fantastic community project to provide free piano (and other instruments) samples. The samples used in the example are from a Steinway Concert Grand in Kristiansand, Norway. Thank you to Pete Malkin for sampling this lovely instrument!

TODO

  • Function to play multiple notes
  • Add more tests
  • Look into replacing compressor
  • New package for chords? @minikeys/chords?
  • Custom labels for piano (for showing keyboard keys)