emiljohansson / speak

Have the computer speak out a string or pass it a command.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

speak

Have the computer speak out a string or pass it a command.

speak supports both a simple string or passing a public command that outputs a string.

Install

`cd path/to/speak`
npm link

Usage

var speak = require('path/to/speak');
speak('Hello, world!', () => {
  // done
});
// => 'Hello, world!'

speak(undefined, () => {
  // done
}, 'weather');
// => 'Denver, CO: 4 C degrees.'
speak 'Hello, world!'
speak weather

API

speak(string, cb, cmd)

string

Type: string

The string to be spoken.

cb

Type: function

Will be called on complete.

cmd

Type: string

Optional string that should represent a public command which logs a string.

License

MIT © Emil Johansson

About

Have the computer speak out a string or pass it a command.

License:MIT License


Languages

Language:JavaScript 100.0%