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

@samuelbradshaw/chorister-js

v0.1.0

Published

Digital-first interactive sheet music.

Readme

Chorister.js

Chorister.js is a digital-first sheet music library that enables interactivity on scores rendered by Verovio. Currently, it is optimized for congregational and community songs, such as hymns, children’s songs, folk songs, and carols.

A demo page that shows basic functionality can be found here: Chorister.js Demo.

Chorister.js powers the interactive sheet music at SingPraises.net (examples: 1, 2, 3, 4, 5).

Documentation:

Features

Sheet music rendering

  • SVG sheet music rendered by Verovio (supports MusicXML, MEI, ABC notation, and other formats).
  • Responsive layout options that adapt to various screen sizes.
  • Adjust sheet music size with pinch to zoom or scale to fit.
  • Support for expanding/unrolling piano introductions, verses, jumps, and repeats.
  • Melody-only view (when part information is provided).
  • Support for switching between multiple “chord sets” (guitar chords, ukulele chords, analytical marks, etc.).
  • Toggling of sheet music features such as fingering marks and measure numbers.
  • Support for transposing to different keys.
  • Support for showing and hiding verses.
  • Support for printing.

MIDI and lyric alignment

Chorister.js doesn’t directly handle audio playback, but it processes and exports MIDI that can be loaded into other libraries that support MIDI playback, such as ProxyPlayer.js.

  • Provided or Verovio-generated MIDI is expanded and aligned with the sheet music.
  • MIDI is split into channels based on sheet music parts (when part information is provided).
  • MIDI is adapted to the lyrics, handling cases where a syllable is only sung in certain verses.
  • Support for adjusting the length of fermatas (when relative durations are provided).
  • Lyric text (if provided) is aligned to sheet music syllables, supporting use cases such as displaying chord sets in a standalone lyrics view.

Tap events and CSS styles

  • Chorister.js sends custom events when loading or interacting with the score. These can be used to trigger actions in your code, such as starting playback at a specific place. See “Custom events” below.
  • Because the score is rendered as SVG, colors, text fonts, and other visual attributes in the sheet music can be customized with CSS. Chorister.js processes Verovio’s output and adds additional elements and attributes for styling. See “Elements and attributes” below.

Getting started

Installation options

Chorister.js is available as classic JavaScript (chorister.js) or as a JavaScript module (chorister.mjs).

Classic JavaScript

Download chorister.js from GitHub and reference it locally in your HTML file:

<script src="scripts/chorister.js"></script>

Or load it from jsDelivr CDN:

<script src="https://cdn.jsdelivr.net/gh/samuelbradshaw/chorister-js@main/chorister.min.js"></script>

JavaScript Module

Download chorister.js and chorister.mjs from GitHub and import as a JavaScript module:

import { ChScore } from './chorister.mjs';

Or load it from jsDelivr CDN:

import { ChScore } from 'https://cdn.jsdelivr.net/gh/samuelbradshaw/chorister-js@main/chorister.min.mjs';

You can also install it using npm:

% cd /your/project/folder
% npm i @samuelbradshaw/chorister-js

Basic usage

<!-- Score container (empty element where the score will be inserted) -->
<div id="score-container"></div>

<!-- Import Chorister.js (classic JavaScript) -->
<script src="https://cdn.jsdelivr.net/gh/samuelbradshaw/chorister-js@main/chorister.min.js"></script>

<script>
  // Gather input data
  const scoreType = 'musicxml';
  const inputData = {
    scoreUrl: 'https://cdn.jsdelivr.net/gh/samuelbradshaw/chorister-js@main/resources/how-great-the-wisdom-and-the-love.musicxml',
    partsTemplate: 'SATB',
  };
  
  // Define options
  const options = {
    scale: 40,
  }
  
  // Use an asynchronous function to load the score
  let chScore, scoreData;
  async function loadScore() {
    // Pass in a CSS selector that selects the score container
    chScore = new ChScore('#score-container');
    scoreData = await chScore.load(scoreType, inputData, options);
  }
  loadScore();
  
</script>

Public methods

  • load(scoreType, inputData, options) – Load a score. Parameters:
    • scoreTypemxl (compressed MusicXML), musicxml, mei, abc, humdrum, plaine-and-easie, or cmme. Required. See Verovio input formats.
    • inputData – Score content and information about the score. Required. See “Input data” below.
    • options – Settings to control how the score is rendered. Optional. See “Options” below.
  • setOptions(optionsToUpdate) – Set one or more options after the score is rendered.
    • optionsToUpdate – Object with the options to be changed. Required.
  • getOptions() – Get the currently-set options.
  • getScoreData() – Get information about the loaded score. Some of the provided data can be helpful for loading controls (for users to adjust options).
  • getScoreContainer() – Get a reference to the element that holds the rendered score.
  • getKeySignatureInfo() – Get key signature information for the loaded score.
  • getPageState() – Get information about the current page state (for paginated layout).
  • jumpToPage(pageNumber, animate = false) – Jump to the specified page (for paginated layout).
    • pageNumber – Which page to jump to. Required. Valid values: page number integer (starting at 1), previous, or next. Required.
    • animate – Whether the transition between pages should animate. Optional boolean. Default: false.
  • getMidi(format = 'note-sequence') – Get processed MIDI content.
    • format – Preferred format. Optional. Valid values: note-sequence (Magenta note sequence), blob (Blob object), array-buffer (ArrayBuffer object). Default: note-sequence.
  • removeScore() – Remove the current score from the page and clear stored data.

Most of these methods will only work after the score is loaded.

Advanced usage

Terminology

  • Score – Sheet music to be visually rendered.
  • Score container – HTML element that holds the rendered score, and can receive JavaScript events.
  • Chord position – Relative position of each note/rest onset, in the order the score is written (ignoring jumps and repeats), starting at 0.
  • Expanded chord position – Relative position of each note/rest onset, in the order the score is played, starting at 0. If the score has jumps or repeats, notes and rests that are played multiple times will have multiple expanded chord positions.
  • Part – Choral voicing or instrument, such as soprano, alto, tenor, bass, violin, trumpet, accompaniment, etc.
  • Section – Introduction, verse, chorus, or other similar unit of a song. May also refer to MEI <section> elements, depending on the context.
  • Lyric line ID – Identifier for a specific lyric line. For example, syllables in staff 1, lyric line 2, would be marked with lyric line ID 1.2.
  • Chord set – Set of guitar chords, ukulele chords, analytical marks, or similar text and/or images that can be displayed just above the music system.
  • Intro bracket – Brackets (⌜ or ⌝) that appear above the music system to mark a sequence of notes as the piano/organ introduction (mainly used in hymns with compressed scores).

Input data

Input data is provided to Chorister.js when loading the score (see “Methods”). The inputData object has the following properties:

  • scoreId – Unique identifier for the score. Optional.
  • scoreUrl – URL where the score can be fetched. Either scoreUrl or scoreContent is required.
  • midiUrl – URL where a MIDI file can be fetched. Optional.
  • lyricsUrl – URL where lyrics can be fetched as plain text. Optional.
  • scoreContent – Score content as a string. Either scoreUrl or scoreContent is required.
  • midiNoteSequence – MIDI content as a Magenta note sequence. Optional.
  • lyricsText – Lyrics as a string. Optional.
  • parts – Parts object (more details below). Optional.
  • partsTemplate – Parts template string (more details below). Optional.
  • sections – Sections object (more details below). Optional.
  • chordSets – Chord sets object (more details below). Optional.
  • fermatas – Fermatas object (more details below). Optional.

scoreUrl, midiUrl, and lyricsUrl may be subject to CORS restrictions depending on where the files are hosted.

With only a score (scoreUrl or scoreContent), Chorister.js should render clean, responsive sheet music with basic functionality. However, additional data can enable additional functionality:

  • MIDI. High-quality MIDI allows for more realistic playback, with variation in volume and tempo. Provided MIDI can be minimal (single play-through from top to bottom, ignoring jumps and repeats) or complete (play-through of the entire song with all verses). If MIDI isn’t provided or can’t be aligned with the score, Chorister.js will use Verovio-generated MIDI.

  • Lyrics. Chorister.js can align versified lyrics with sheet music syllables. This enables breaking complex scores into logical sections. Lyrics not in the score will be displayed below the sheet music. If lyrics aren’t provided, Chorister.js will attempt to extract lyrics on the fly.

  • Parts. The parts template or parts object provides information about the choral voicing and/or instruments in the score, as well as information about each staff. This enables Chorister.js to identify the melody, and to tag notes in the score and MIDI as belonging to a specific part. If parts metadata isn’t provided, Chorister.js will mark the top part in the first staff as the melody, and remaining parts as accompaniment.

  • Sections. The sections object identifies the logical sections of the score, such as the introduction, verses, choruses, etc. If not provided, Chorister.js will attempt to generate sections automatically based on lyrics, MEI expansions, verse labels in the score, intro brackets, and other hints. Automatic section generation may be sufficient for some scores.

  • Chord sets. Guitar chords, ukulele chords, analytical marks, or similar text and/or images to be shown above the music system.

  • Fermatas. Information about each fermata in the score, for better MIDI playback.

Examples

Provided lyrics should be written in the order they’re sung (for example, repeat the chorus if it’s sung multiple times), with bracketed labels such as [Verse 1], [Chorus], or [Bridge] above each lyric block. Only melody lyrics should be included (not lyrics from alternate or secondary parts).

[Verse 1]
When peace, like a river, attendeth my way,
When sorrows like sea billows roll—
Whatever my lot, Thou hast taught me to say,
“It is well, it is well with my soul.”

[Chorus]
It is well with my soul;
It is well, it is well with my soul.

[Verse 2]
Though Satan should buffet, though trials should come,
Let this blest assurance control:
That Christ hath regarded my helpless estate
And hath shed His own blood for my soul.

[Chorus]
It is well with my soul;
It is well, it is well with my soul.

[Verse 3]
My sin—oh, the bliss of this glorious thought!—
My sin, not in part but the whole,
Is nailed to the cross, and I bear it no more.
Praise the Lord, praise the Lord, O my soul.

[Chorus]
It is well with my soul;
It is well, it is well with my soul.

[Verse 4]
O Lord, haste the day when my faith shall be sight,
The heav’ns be rolled back like a scroll.
The trump shall resound, and the Lord shall descend;
Even so, it is well with my soul.

[Chorus]
It is well with my soul;
It is well, it is well with my soul.

Parts can be provided as a “parts template” string, or a parts object.

Parts template

Key:

  • M = melody
  • S = soprano
  • A = alto
  • T = tenor
  • B = bass
  • P = part (as in Part 1, Part 2)
  • D = descant
  • O = obbligato
  • I = instrumental
  • C = accompaniment
  • + = separator between staves
  • # = separator for specifying melody part (if not specified, M, S, P, or the first part is chosen as the melody)
  • ; = separator between chord position changes

Normalizations:

  • Melody –> MC
  • Soprano –> S
  • Alto –> A
  • Tenor –> T
  • Bass –> B
  • Descant –> D
  • Obbligato –> O
  • Instrumental –> I
  • Accompaniment –> C
  • Solo –> MC
  • Unison –> MC
  • Two-Part –> P+P
  • Duet –> PP
  • SATB –> SA+TB
  • SSAA –> SS+AAA
  • AATT –> AA+TT
  • TTBB –> TT+BB
  • For unspecified staves, the normalized template is padded with C (accompaniment, if there are lyrics) or I (instrumental)

Examples:

  • SATB – Staff 1: Soprano, alto. Staff 2: Tenor, bass.
  • TT+BB#T2 – Staff 1: First tenor, second tenor. Staff 2: First bass, second bass. Second tenor has the melody.
  • Descant+Unison – Staff 1: Descant. Remaining staves: Unison (melody and accompaniment).

If parts change throughout the song, templates can be combined and marked with starting chord positions:

  • 0:Unison; 39:SA+TB
  • 0:SS+A#S1; 35:SS+A#S1
  • 0:SA+TB#S; 24:SA+TB#T; 36:SA+TB#S

Parts object

[
    {
        "partId": "soprano",
        "name": "Soprano",
        "isVocal": true,
        "placement": "auto",
        "chordPositionRefs": {
            "0": { "isMelody": true,
                "staffNumbers": [1],
                "lyricLineIds": null }
        }
    },
    {
        "partId": "alto",
        "name": "Alto",
        "isVocal": true,
        "placement": "auto",
        "chordPositionRefs": {
            "0": { "isMelody": false,
                "staffNumbers": [1],
                "lyricLineIds": null }
        }
    },
    {
        "partId": "tenor",
        "name": "Tenor",
        "isVocal": true,
        "placement": "auto",
        "chordPositionRefs": {
            "0": { "isMelody": false,
                "staffNumbers": [2],
                "lyricLineIds": null }
        }
    },
    {
        "partId": "bass",
        "name": "Bass",
        "isVocal": true,
        "placement": "auto",
        "chordPositionRefs": {
            "0": { "isMelody": false,
                "staffNumbers": [2],
                "lyricLineIds": null }
        }
    }
]

Properties:

  • partId – Any unique ID for the part. String.
  • name – Part name that may be visible to users. String.
  • isVocal – Whether the part is sung or instrumental. Boolean.
  • placement – Placement of the part on its staff/staves. Valid values: 1, 2, 3, 4 (relative position among other parts on the staff), "full" (fills the specified staves), "auto" (automatically placed).
  • chordPositionRefs – Chord position where the part starts or where part metadata changes. Integer.
    • isMelody – Whether the part includes the melody (starting at the given chord position). Boolean.
    • staffNumbers – Numbers of the staves where the part is to be placed. List of integers.
    • lyricLineIds – References to lyrics that are sung in the part. List of lyricLineIds (combination of staff and lyric line number – for example, a lyric syllable on the second staff, line number 1, has lyricLineId "2.1"). Optional.
[
    {
        "sectionId": "introduction",
        "type": "introduction",
        "name": "Introduction",
        "marker": null,
        "placement": "inline",
        "pauseAfter": true,
        "chordPositionRanges": [
            { "start": 0, "end": 12,
              "staffNumbers": [1, 2],
              "lyricLineIds": [] },
            { "start": 55, "end": 63,
              "staffNumbers": [1, 2],
              "lyricLineIds": [] }
        ]
    },
    {
        "sectionId": "verse-1",
        "type": "verse",
        "name": "Verse 1",
        "marker": 1,
        "placement": "inline",
        "pauseAfter": false,
        "chordPositionRanges": [
            { "start": 0, "end": 42,
              "staffNumbers": [1, 2],
              "lyricLineIds": ["1.1"] }
        ]
    },
    {
        "sectionId": "chorus-1",
        "type": "chorus",
        "name": "Chorus",
        "marker": null,
        "placement": "inline",
        "pauseAfter": false,
        "chordPositionRanges": [
            { "start": 42, "end": 63,
              "staffNumbers": [1, 2],
              "lyricLineIds": ["1.1"] }
        ]
    }
]

Properties:

  • sectionId – Any unique ID for the part. String.
  • type – Section type. Valid values: "introduction", "verse", "chorus", "bridge", "interlude", "unknown".
  • name – Section name that may be visible to users. String.
  • marker – Verse number or similar sequential marker. String. Optional.
  • placement – Placement of the section in the score. Valid values: "inline" (inline with the music), "below" (below the music), "none" (not placed in the score).
  • pauseAfter – Whether a short pause should be added in the MIDI after the section is played. Boolean.
  • chordPositionRanges – Chord position ranges that are part of the verse.
    • start – Chord position where the range starts. Integer.
    • end – Chord position where the range ends (exclusive range). Integer.
    • staffNumbers – Numbers of the staves that are relevant to the section. For example, if the first staff is a descant only sung on the third verse, only the third verse should include that staff number. List of integers. Optional.
    • lyricLineIds – References to lyrics that are relevant to the section. List of lyricLineIds (combination of staff and lyric line number – for example, a lyric syllable on the second staff, line number 1, has lyricLineId "2.1"). Optional.
[
    {
        "chordSetId": "default",
        "name": "Default",
        "svgSymbolsUrl": null,
        "chordPositionRefs": {
            "1": {
                "prefix": null,
                "text": "C",
                "svgSymbolId": null
            },
            "4": {
                "prefix": null,
                "text": "C+",
                "svgSymbolId": null
            },
            "7": {
                "prefix": null,
                "text": "Dm",
                "svgSymbolId": null
            },
            ...
        }
    },
    {
        "chordSetId": "guitar",
        "name": "Guitar",
        "svgSymbolsUrl": null,
        "chordPositionRefs": {
            "1": {
                "text": "C",
                "prefix": null,
                "svgSymbolId": null
            },
            "4": {
                "text": "C+",
                "prefix": null,
                "svgSymbolId": null
            },
            "7": {
                "text": "Dm",
                "prefix": null,
                "svgSymbolId": null
            },
            ...
        }
    },
    {
        "chordSetId": "parsons-code",
        "name": "Parsons Code",
        "svgSymbolsUrl": "/static/symbols.svg",
        "chordPositionRefs": {
            "0": {
                "text": "*",
                "prefix": null,
                "svgSymbolId": "pc-asterisk"
            },
            "1": {
                "text": "R",
                "prefix": null,
                "svgSymbolId": "pc-repeat"
            },
            "2": {
                "text": "D",
                "prefix": null,
                "svgSymbolId": "pc-down"
            },
            ...
        }
    }
]

Properties:

  • chordSetId – Any unique ID for the chord set. String.
  • name – Chord set name that may be visible to users. String.
  • svgSymbolsUrl – Relative or absolute URL to an SVG file with SVG symbols. String. Optional.
  • chordPositionRefs – Chord position where an item should be added. Integer.
    • text – Text to be added. String.
    • prefix – Prefix to be added, such as Capo 5:. String. Optional.
    • svgSymbolId – ID of the SVG symbol to be drawn above (when enabled in options). String. Optional.
[
    {
        "chordPosition": 31,
        "durationFactor": 2.0
    },
    {
        "chordPosition": 157,
        "durationFactor": 1.5
    }
]

Properties:

  • chordPosition – Chord position of the fermata. Integer.
  • durationFactor – Relative duration of the chord position. Float.

Options

Options can be passed in to Chorister.js when calling the load() method to load the score. After the score is loaded, options can be changed with the setOptions() method (see “Methods”). An options object has the following optional properties:

  • layout – Score layout. Possible values: vertical-scroll, horizontal-scroll, paginated, or print. Default: vertical-scroll.
  • scale – Size of the sheet music. Positive integer (exact scale), or an array with two positive integers (min and max scale). When using min and max, the score will attempt to scale to fit within the score container (works best if the score container has a fixed size). Default: 40.
  • keySignatureId – Key signature to transpose the sheet music to. Transposition is relative to the tonality (major or minor) at the beginning of the score. Possible values: (major) g-flat-major, g-major, a-flat-major, a-major, b-flat-major, b-major, c-flat-major, c-major, c-sharp-major, d-flat-major, d-major, e-flat-major, e-major, f-major, f-sharp-major, (minor) g-minor, g-sharp-minor, g-flat-minor, a-minor, a-sharp-minor, b-flat-minor, b-minor, c-minor, c-sharp-minor, d-minor, d-sharp-minor, e-flat-minor, e-minor, f-minor, f-sharp-minor, or null. Default: null.
  • expandScore – Whether the score should be expanded/unrolled. Possible values: intro (expand introduction only, based on intro brackets), full-score (expand full score), or false (don’t expand). Default: false.
  • showChordSet – Whether chord set should be visible. Possible values: ID of a provided chord set, or false. Default: false.
  • showChordSetImages – Whether chord set images should show. Only applies if showChordSet is true and the currently-visible chord set has images. Boolean. Default: false.
  • showFingeringMarks – Whether fingering marks should be visible. Only applies if the score has fingering marks. Boolean. Default: false.
  • showMeasureNumbers – Whether measure numbers should be visible. Boolean. Default: false.
  • showMelodyOnly – Whether non-melody notes should be hidden. Boolean. Default: false.
  • headerContent – HTML content to display at the beginning of the score. Header and footer content is scaled with the score and included when printing. String or null. Default: null.
  • footerContent – HTML content to display at the end of the score. Header and footer content is scaled with the score and included when printing. String or null. Default: null.
  • hideSectionIds – Section IDs to hide. Possible values: One or more section (intro, verse, chorus, etc.) IDs. Array. Default: [].
  • drawBackgroundShapes – Background shapes to draw. Possible values: See “Background and foreground shapes.” Array. Default: [].
  • drawForegroundShapes – Foreground shapes to draw. Possible values: See “Background and foreground shapes.” Array. Default: [].
  • customEvents – Custom events to send. Possible values: See “Custom events.” Array. Default: ['ch:tap', 'ch:midiready', 'ch:scoreload', 'ch:scoredraw', 'ch:pagechange'].

Custom events

When enabled in options, Chorister.js sends custom events to the score container:

  • ch:tap – Sent when the user taps on a shape in the score.
  • ch:hover – Sent when the user hovers over a shape in the score with a mouse or trackpad. Disabled by default to reduce processing.
  • ch:midiready – Sent when MIDI is processed and ready to use.
  • ch:scoreload – Sent when the score finishes its initial loading.
  • ch:scoredraw – Sent each time the score is drawn or redrawn.
  • ch:pagechange – Sent when the current page changes (for paginated layout).

Each event has a detail attribute that provides additional information. For example, the ch:tap event could be used to trigger playback from a specific place in the score:

const scoreContainer = document.getElementById('score-container');
scoreContainer.addEventListener('ch:tap', (event) => {
  console.log(event.detail);
  if (event.detail.expandedChordPositions.length > 0) {
    const startTime = getTimestamp(event.detail.expandedChordPositions[0]);
    prPlayer.seekToTime(startTime, { play: true });
  }
});

The ch:tap and ch:hover events require corresponding shapes to be added in Chorister.js options. This is because SVG elements don’t respond to pointer events in empty spaces. For example, if you want the event to include chord position information, you’ll need to add ch-chord-position-rect as a foreground or background shape.

Elements and attributes

Several elements and attributes in the SVG score are useful for CSS styling.

Verovio-provided classes

Verovio’s native sheet music format is MEI. MusicXML and other input formats are first converted to MEI, then rendered to SVG. SVG elements have class names that represent elements in the MEI. For example, an MEI <note> element is rendered to SVG <g class="note">.

Verovio also adds the @data-related attribute to elements that are related to a specific note, such as ledger lines, note heads, accidentals, stems, and dots. These are useful for styling all of the parts of a note together. The value of the attribute is one or more ID(s) of the related note(s).

Additional data attributes

Chorister.js adds the following data attributes to elements in Verovio’s SVG output:

  • @data-ch-chord-position – Indicates the chord position of each element. Chord position is the relative position of each unique note or rest onset, as written in the sheet music, starting at 0 for the first written note or chord in the sheet music. Added to chord, note, rest, dir, harm, and fermata elements.
  • @data-ch-expanded-chord-position – Expanded chord position is similar to chord position, but it indicates relative position in the expanded score, or the order that notes are played. If the score has repeats or jumps, elements may have multiple expanded chord positions. Added to chord, note, rest, dir, harm, and fermata elements.
  • @data-ch-lyric-line-id – Indicates the lyric line ID. Can be used to highlight a specific verse in the score.
  • @data-ch-intro-bracket – Indicates an intro bracket (⌜ or ⌝). The attribute value is either start or end.
  • @data-ch-part-id – Indicates the vocal or instrumental part (if part information is provided). Added to note and rest elements.
  • @data-ch-melody – Indicates that the note or rest is part of the melody (if part information is provided). Added to note and rest elements.
  • @data-ch-section-id – Indicates the section ID for lyric text. Added to verse and label elements.
  • @data-ch-secondary – Indicates that the lyric text is secondary, i.e. not part of the melody (if part information is provided). Added to verse elements.
  • @data-ch-chorus – Indicates that the lyric text is part of a chorus or refrain. Added to verse elements.

These data attributes are set on the score container:

  • @data-ch-status – Attribute that indicates the score loading status (preparing, processing, drawing, or ready).
  • @data-ch-layout – Attribute that indicates the current layout type.
  • @data-ch-scale-to-fit – Attribute that indicates if scale to fit is enabled (scale option set to an array with different min and max values).
  • @data-ch-pinch – Attribute that indicates if the score is currently being pinched to zoom.
  • @data-ch-width – Attribute that indicates the score width.
  • @data-ch-height – Attribute that indicates the score height.
  • @data-ch-scale – Attribute that indicates the score scale.

The score container has inner containers identified by these data attributes:

  • @data-ch-page – Attribute on each page of the score. The attribute value is the page number.
  • @data-ch-svg – Attribute on element(s) that contain SVG sheet music.
  • @data-ch-lyrics-below – Attribute on element(s) that contain lyrics below the sheet music (for provided lyric stanzas that aren’t inline with the sheet music).
  • @data-ch-header – Attribute on element(s) that contain header content (set with headerContent option).
  • @data-ch-footer – Attribute on element(s) that contain footer content (set with footerContent option).

Additionally, the score container has a style attribute with the CSS custom property --ch-scale. This can be used to adjust the relative size of header and footer content and verses below.

Background and foreground shapes

Chorister.js supports adding labels and shapes to the foreground or background in the SVG output, using the drawBackgroundShapes and drawForegroundShapes options. These can be used for hover effects, highlighting what’s currently playing, or labeling parts of the score. They are identified by their class names: ch-staff-label, ch-chord-position-label, ch-lyric-line-label, ch-system-rect, ch-measure-rect, ch-staff-rect, ch-chord-position-line, ch-chord-position-rect, ch-note-circle, ch-lyric-rect.

License

  • Chorister.js: MIT License.
  • Verovio: Used for parsing and rendering sheet music to SVG. LGPLv3 license. Chorister.js dynamically links to Verovio at runtime using JavaScript import.
  • Magenta.js: Used for loading and processing MIDI. Apache 2.0 license.