meteor add osxi:annyang
A tiny javascript Speech Recognition library that lets your users control your site with voice commands.
annyang
is exposed on the client.
// Let's define a command
var commands = {
'hello': function() { alert('Hello world!'); }
};
// Add our commands to annyang
annyang.addCommands(commands);
// Start listening.
annyang.start();
For more info, see TalAter/annyang.