The source code of Joe Maddalone's - AngularJS Speech Recognition with annyang
Original Youtube Video
Annyang is a JS library that allows your users to contorl your site using voice commands.
In Joe's video (thanks!), he talked about running the files on a local server. I used nodejs and express to do this.
To get the application up and running.
- Install node
- Run
node server.js
- Go to
http://localhost:8000/index.html
I used bower to install angular and annnyang. It is important that the bower_components remain in the static folder and not in the root directory because express.static "sandboxes" to the path you pass. This means that it won't go a "level up" from the directory.