Music21j Sandbox
A live editor for experimenting with Music21j and Vexflow, based on the Vexflow Sandbox
const s = new music21.stream.Measure(); const n = new music21.note.Note("C#4"); n.addLyric('lulli-'); n.addLyric('sad'); n.duration.type = "half"; const n2 = new music21.note.Note("A3"); n2.addLyric('bye'); n2.addLyric('day'); n2.duration.type = "quarter"; const n3 = new music21.note.Note("C#"); n3.duration.type = "quarter"; s.append(new music21.meter.TimeSignature('4/4')); s.append(n); s.append(n2); s.append(n3); s.renderOptions.marginBottom = 80; s.replaceDOM('#mainSVG');