# itako-text-reader-speech-synthesis

> itako-v0 Speech Synthesis text-reader plugin

Latest version **0.0.0** (published 2016-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install itako-text-reader-speech-synthesis
pnpm add itako-text-reader-speech-synthesis
yarn add itako-text-reader-speech-synthesis
bun add itako-text-reader-speech-synthesis
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2016-04-15 |
| First published | 2016-04-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | 59naga |
| Maintainers | 59naga |
| Keywords | itako-plugin, itako-text-reader |

## Links

- npm: https://www.npmjs.com/package/itako-text-reader-speech-synthesis
- Repository: https://github.com/itakojs/itako-text-reader-speech-synthesis
- Homepage: https://github.com/itakojs/itako-text-reader-speech-synthesis#readme
- Issues: https://github.com/itakojs/itako-text-reader-speech-synthesis/issues
- npm.io page: https://npm.io/package/itako-text-reader-speech-synthesis

## Recent versions

- 0.0.0 (latest) — 2016-04-15

## README

Itako Text Reader Speech Synthesis
---

<p align="right">
  <a href="https://npmjs.org/package/itako-text-reader-speech-synthesis">
    <img src="https://img.shields.io/npm/v/itako-text-reader-speech-synthesis.svg?style=flat-square">
  </a>
  <a href="https://ci.appveyor.com/project/itakojs/itako-text-reader-speech-synthesis">
    <img src="https://img.shields.io/appveyor/ci/itakojs/itako-text-reader-speech-synthesis.svg?style=flat-square">
  </a>
  <a href="https://codeclimate.com/github/itakojs/itako-text-reader-speech-synthesis/coverage">
    <img src="https://img.shields.io/codeclimate/github/itakojs/itako-text-reader-speech-synthesis.svg?style=flat-square">
  </a>
  <a href="https://codeclimate.com/github/itakojs/itako-text-reader-speech-synthesis">
    <img src="https://img.shields.io/codeclimate/coverage/github/itakojs/itako-text-reader-speech-synthesis.svg?style=flat-square">
  </a>
  <a href="https://gemnasium.com/itakojs/itako-text-reader-speech-synthesis">
    <img src="https://img.shields.io/gemnasium/itakojs/itako-text-reader-speech-synthesis.svg?style=flat-square">
  </a>
</p>

Installation
---
```bash
npm install itako-text-reader-speech-synthesis --save
```

Usage
---

## `ItakoTextReaderSpeechSynthesis(type, options)` -> `reader`

specify instance as first argument of the [Itako constructor](https://github.com/itakojs/itako#usage) as the value of the array.

```html
<script src="https://npmcdn.com/itako"></script>
<script src="https://npmcdn.com/itako-text-reader-speech-synthesis"></script>
<script>
var reader = new ItakoTextReaderSpeechSynthesis('text', {
  // default token volume (1~0)
  volume: 1,

  // default token pitch (2~0)
  pitch: 1,

  // default token reading speed (rate) (2~0.1)
  speed: 2,

  // default reading language (en,ja-JP,etc...)
  lang: 'en',

  // if specify SpeechSynthesisVoice.name, it use instance
  // see also: `speechSynthesis.getVoices().map((voice)=> voice.name)`
  speaker: 'Victoria',
});
var itako = new Itako([reader]);

// read the first argument
itako.read('greeting');
</script>
```

See also
---
- [itako - a pluggable text reader](https://github.com/itakojs/itako)

Development
---
Requirement global
* NodeJS v5.10.0
* Npm v3.7.1
* Chrome Launcher 49.0.2623 (Mac OS X 10.11.4)

```bash
git clone https://github.com/itakojs/itako-text-reader-speech-synthesis
cd itako-text-reader-speech-synthesis
npm install

npm test
```

License
---
[MIT](http://59naga.mit-license.org/)

---
_Source: https://npm.io/package/itako-text-reader-speech-synthesis · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
