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

@quonset/minim

v0.0.8

Published

MNX notation renderer

Readme

minim

A React.js component for rendering music encoded with MNX. Still a work-in-progress!

Peer requirements

Minim (as of v0.0.7) works with React 19.2.3 or above, and Node 20+.

Ideally the package will in the future work within any Javascript environment; I'm considering creating a web component version, &c.

How to use

Add @quonset/minim as a dependency to your project:

npm i @quonset/minim --save

Import @quonset/minim into your project, import a valid MNX document (saved with a .json extension), and pass the document to Minim:

import Minim from '@quonset/minim';
import myFirstComposition from '@/path/to/my-first-composition.json';
...

export default function Component() {
  return (
    <div>
      <Minim score={myFirstComposition} />
    </div>
  )
}

Note: As of v0.0.7, There are some differences between what I've implemented and the MNX spec — mainly to deal with outlier "modern" notational systems (such as allowing for multiple concurrent tempi and/or meters). Down the road, I hope to allow a consumer of Minim to render "CWMN" (i.e. canonical MNX) notation, as well as "extended" (i.e. polytemporal, etc.) notation.

An open question, too, is whether or not MNX documents can be nested. More on this in subsequent releases.

Documentation

TBD. At the moment, this package is under slow but active development. Hoping to get there with some minimal (and much needed) documentation, partly to be sure development continues along a productive trajectory.

Contributing

Publishing new versions

  1. Create a PR of the work, with
  • the version number already incremented, and
  • a CHANGELOG entry describing the work you did.
  1. When that PR is merged into master, and while on master, run: npm publish --access public
  • Follow semantic versioning (0.0.1 for feature fixes/bugs, 0.1.0 for new features that are backward-compatible, and 1.0.0 for new features that break backward-compatibility).