https://github.com/derekxkwan/cljs-fftanalyzer
demo of web audio api's fft analyzer using clojurescript and reagent
https://github.com/derekxkwan/cljs-fftanalyzer
clojurescript reagent
Last synced: 10 months ago
JSON representation
demo of web audio api's fft analyzer using clojurescript and reagent
- Host: GitHub
- URL: https://github.com/derekxkwan/cljs-fftanalyzer
- Owner: derekxkwan
- Created: 2018-07-16T07:26:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-16T08:54:19.000Z (almost 8 years ago)
- Last Synced: 2025-03-11T15:28:41.505Z (over 1 year ago)
- Topics: clojurescript, reagent
- Language: Clojure
- Size: 99.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cljs-fftanalyzer
Simple Web Audio API-based FFT analyzer implemented using `clojurescript` (and a little `reagent` for view stuff)
## Overview
for a live demo, visit [https://derekxkwan.github.io/cljs-fftanalyzer](https://derekxkwan.github.io/cljs-fftanalyzer)
## Setup
To get an interactive development environment run:
lein figwheel
and open your browser at [localhost:3449](http://localhost:3449/).
This will auto compile and send all changes to the browser without the
need to reload. After the compilation process is complete, you will
get a Browser Connected REPL. An easy way to try it is:
(js/alert "Am I connected?")
and you should see an alert in the browser window.
To clean all compiled files:
lein clean
To create a production build run:
lein do clean, cljsbuild once min
And open your browser in `resources/public/index.html`. You will not
get live reloading, nor a REPL.
## License
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.