This tutorial shows how to create a basic piano in JavaScript. All code on this page is MIT licensed. The source code can be found here.
We will try to build a piano that looks something like this:
To follow along with this tutorial, install the package from npm.
npm install go-piano
First, we will need to play individual notes from our virtual piano. We can use a JS library for this. Here are two that are easy to use:
// Tone JS
// Play a middle 'C' for the duration of an 8th note
piano.triggerAttackRelease("C4", "8n");
// Musical JS
piano.tone("C", 1.0, 0.5);
Let’s make some graphics for our piano. We will use SVG to draw the keys and body of the piano. If you want to skip this step, you can download a simple image of a piano here.
// TODO
alert("Hello World");
Now we need to let the user interact with the piano, through the mouse and keyboard (or through tapping on a touch screen).
// TODO
alert("Hello World");