# yaspeech

> Module for Yandex Speech API.

Latest version **0.0.2** (published 2017-05-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install yaspeech
pnpm add yaspeech
yarn add yaspeech
bun add yaspeech
```

## 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.2 |
| Published | 2017-05-02 |
| First published | 2017-05-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 (+2 in 2 direct dependencies) |
| Install scripts | no |
| Author | Mikhail Semin |
| Maintainers | bifot |
| Keywords | speech, yandex, api, voice |

## Links

- npm: https://www.npmjs.com/package/yaspeech
- Repository: https://github.com/bifot/yaspeech
- Homepage: https://github.com/bifot/yaspeech#readme
- Issues: https://github.com/bifot/yaspeech/issues
- npm.io page: https://npm.io/package/yaspeech

## Dependencies (2)

- [fs](https://npm.io/package/fs.md) 0.0.1-security
- [request](https://npm.io/package/request.md) ^2.81.0

## Recent versions

- 0.0.2 (latest) — 2017-05-02

## README

# Ya Speech

Module for Yandex Speech API.

## Install

```
$ npm i yaspeech --save
```

## Usage

```javascript
const Speech = require('yaspeech')

const api = new Speech(process.env.speech_token)

api.speech({
  filename: 'example',
  text: 'Hello, world!',
  format: 'mp3',
  lang: 'en-US',
  speaker: 'oksana',
  speed: 0.7,
  emotion: 'evil'
}).then(file => {
  console.log(file) // => 'example.mp3'
})
```

## License

MIT.

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