+
+ Play a wide array of sounds using this web page!
+ Hit the first button that says, 'click for sound' to play an initial sound. Click it a second time to shut off the sound. Toggle the sliders to alter various properties of the notes. Click the 'filter sound' button to filter the sound.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
diff --git a/server.js b/server.js
new file mode 100644
index 00000000..43f47fc7
--- /dev/null
+++ b/server.js
@@ -0,0 +1,17 @@
+
+const express = require('express'),
+ app = express(),
+ serveStatic = require('serve-static')
+ dir = 'public/'
+
+
+
+
+
+
+const port = 3000
+
+
+app.use(serveStatic(dir))
+
+app.listen(port || 3000)
\ No newline at end of file