UNPKG

tonal

Version:

tonaljs music theory library

21 lines (18 loc) 393 B
<!doctype html> <html lang="en"> <head> <script src="tonal.min.js"></script> </head> <body> <h1>Tonal browser test</h1> <p>Open the development console and type:</p> <pre>Tonal.Key.majorKey('Bb');</pre> <pre> </pre> </body> <script> var el = document.querySelector('pre') var data = Tonal.Key.majorKey('Cb') el.textContent = JSON.stringify(data, null, 2) </script> </html>