Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 511 Bytes

File metadata and controls

28 lines (18 loc) · 511 Bytes

meteor-annyang

meteor add osxi:annyang

A tiny javascript Speech Recognition library that lets your users control your site with voice commands.

Globals

annyang is exposed on the client.

Example

// Let's define a command
var commands = {
  'hello': function() { alert('Hello world!'); }
};

// Add our commands to annyang
annyang.addCommands(commands);

// Start listening.
annyang.start();

Further Reading

For more info, see TalAter/annyang.