
Company News
Socket Named to Rising in Cyber 2026 List of Top Cybersecurity Startups
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.
speakable-toggle
Advanced tools
Demo video on what you can achieve using node-speakable: https://my.doctape.com/s/NLHn1z
node-speakable is a continuous speech recognition module for node.js.
Basically, node-speakable is continuous waiting for you to say something and waits until you finally stopped talking. It then emits an speechResult event with an Array() including of your recognizedWords. You can then .indexOf() the array to trigger some awesome action to happen, like turning on your Philips Hue lights.
If you ever talked to your XBOX360 (kinect) you're already familiar on how a continuous speech recognition system works for you.
It's pure JavaScript magic... Ok, not yet! Currently node-speakable needs you to put a binary of sox into the modules (into lib) folder to do the recording. The actual voice recognition is then achieved trough a POST to the the Google Speech API.
var Speakable = require('./');
var speakable = new Speakable();
By default, the language is American English ( 'en-US' ), but you can specify another language in the options. Example usage:
var speakable = new Speakable({lang: 'it-IT'});
speakable.on('speechStart', function() {
console.log('onSpeechStart');
});
speakable.on('speechStop', function() {
console.log('onSpeechStop');
});
speakable.on('speechReady', function() {
console.log('onSpeechReady');
});
speakable.on('error', function(err) {
console.log('onError:');
console.log(err);
speakable.recordVoice();
});
speakable.on('speechResult', function(recognizedWords) {
console.log('onSpeechResult:')
console.log(recognizedWords);
speakable.recordVoice();
});
speakable.recordVoice();
node-speakable is licensed under the MIT license.
FAQs
A toggled speech recognition module for node.js.
We found that speakable-toggle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.

Research
Socket detected 84 compromised TanStack npm package artifacts modified with suspected CI credential-stealing malware.

Security News
A dispute over fsnotify maintainer access set off supply chain alarms around one of Go’s most widely used filesystem libraries.