Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 733 Bytes

README.md

File metadata and controls

30 lines (16 loc) · 733 Bytes

ElmMusic

A Synthesizer implemented in Elm using Tone.js.

Check it out here: https://efraimdahl.github.io/ElmMusic/

To run locally:

The following steps are performed in the command line. First, clone the directory and install npm:

npm install.

Run init to create the node-modules directory:

npm init -y.

Then make using the command:

elm make src/ElmAndTone.elm --output elm-comp.js (We do not have a Main.elm file; that has been replaced by ElmAndTone.elm).

Then run a server in the same directory as index.html. One option is to use http-server. To install using npm, run:

npm install http-server

Start the server:

http-server

and visit the local link provided. We recommend using Firefox or Chrome.