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 🙏

© 2024 – Pkg Stats / Ryan Hefner

satie

v0.0.13-alpha6

Published

A sheet music renderer for the web

Downloads

37

Readme

Satie Test status

Render and edit sheet music in your browser or Node application.

Features

  • MusicXML! Satie natively supports MusicXML for viewing and editing songs.
  • Satie renders sheet music to SVG. SVGs can be embedded in a web page or exported. SVGs can be converted to other image formats.
  • Patch-based editing. Updates are fast enough for most real-time editing.

Quickstart

The easiest way to install Satie is via npm (to get npm, install Node.js).

Add satie and React to your project via npm:

npm install satie react;

If you want to view songs inside your web browser, you also need React DOM:

npm install react-dom

Rendering songs

Into a web page

For this part of the guide you need:

  • basic knowledge of React. See React's getting started guide.
  • a working development server with React.
  • a MusicXML string you wish to render

Inside your application, this is how you render a song to an element with the ID "root":

var SatieApplication = require("satie");
var ReactDOM = require("react-dom");

let satieApp = new SatieApplication();

let song = new satieApp.Song({
    musicXML: sourceOfMusicXML

    errorHandler: function(err) {
        // This is called when the song has a non-recoverable error (e.g., a song could not be opened).
        console.error(err);
    },
});

Song.addChangeListener(function() {
    ReactDOM.render(song.render(), document.getElementById("root"));
});

As an SVG

For this part of the guide you need:

  • basic knowledge of React. See React's getting started guide.
  • a MusicXML string you wish to export to an SVG.

Inside your application, this is how you render a song to an element with the ID root:

var SatieApplication = require("satie");

let satieApp = new SatieApplication();

let song = new satieApp.Song({
    musicXML: sourceOfMusicXML

    errorHandler: function(err) {
        // This is called when the song has a non-recoverable error (e.g., a song could not be opened).
        console.error(err);
    },
});

Song.addChangeListener(function() {
    console.log(song.toSVG());
});

Developing Satie

Obtaining

To obtain Satie run,

git clone [email protected]:jnetterf/satie.git
cd satie

Development environment

Mac OS X with node and a recent XCode should just work.

Linux-specific instructions: you need some common development tools. (sudo apt-get install build-essential xsltproc)

Windows-specific instructions: you need git bash or similar, make, and libxslt2 installed.

Building

To build, lint, and run unit tests:

| Task | Command | |-----------------------------------------------------|-----------------------| | Build and run unit tests | make | | Build and unit test whenever a file changes | make watch | | Build and run tests matching 14a on file change | make watch TEST=14a | | Lint | make lint | | Run all tests, even slow ones | make test_all | | Run coverage testing | make coverage | | Update TypeScript external definitions | make tsd | | Run the development server on port 4200 | make serve |

License

Satie is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The code is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL for more details.

Additional permissions under the GNU Affero GPL version 3 section 7:

  • If you modify this Program, or any covered work, by linking or combining it with a general purpose web browser (excluding extensions and excluding add-ons), the licensors of this Program grant you additional permission to convey the resulting work.

  • You may distribute non-source (e.g., minimized or compacted) forms of that code without the copy of the GNU GPL normally required by section 4, provided you include this license notice and a URL through which recipients can access the Corresponding Source.

  • If you modify this code, you may extend these exception to your version of the code, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.

If this license prevents you from using Satie in an open source project, file an issue. I want to make it work!