Music21j Sandbox
A live editor for experimenting with Music21j and Vexflow, based on the Vexflow Sandbox
const s = new music21.stream.Stream(); const n = new music21.note.Note("C#"); n.duration.type = "half"; const n2 = new music21.note.Note("C#"); 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.replaceDOM();