commit 671febc69cae1efc88eeea62019e499d2179da60 Author: Matt Huntington Date: Mon Jul 27 06:34:51 2020 -0400 init diff --git a/app.js b/app.js new file mode 100644 index 0000000..fa032a8 --- /dev/null +++ b/app.js @@ -0,0 +1,9 @@ +const vf = new Vex.Flow.Factory({renderer: {elementId: 'main'}}); +const score = vf.EasyScore(); +const system = vf.System(); + +system.addStave({ + voices: [score.voice(score.notes('C#5/q, B4, A4, G#4'))] +}).addClef('treble').addTimeSignature('4/4'); + +vf.draw(); diff --git a/index.html b/index.html new file mode 100644 index 0000000..5d765b4 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + + + + + + + +