@ondewo/s2t-client-angular
Version:
ONDEWO Speech 2 Text (S2T) Client library for Angular
79 lines (66 loc) • 2.99 kB
Markdown
<div align="center">
<table>
<tr>
<td>
<a href="https://ondewo.com/en/products/natural-language-understanding/">
<img width="400px" src="https://raw.githubusercontent.com/ondewo/ondewo-logos/master/ondewo_we_automate_your_phone_calls.png"/>
</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://www.linkedin.com/company/ondewo "><img width="40px" src="https://cdn-icons-png.flaticon.com/512/3536/3536505.png"></a>
<a href="https://www.facebook.com/ondewo"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/733/733547.png"></a>
<a href="https://twitter.com/ondewo"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/733/733579.png"> </a>
<a href="https://www.instagram.com/ondewo.ai/"><img width="40px" src="https://cdn-icons-png.flaticon.com/512/174/174855.png"></a>
<a href="https://badge.fury.io/js/%40ondewo%2Fs2t-client-angular"><img src="https://badge.fury.io/js/%40ondewo%2Fs2t-client-angular.svg" alt="npm version" height="32"></a>
</td>
</tr>
</table>
<h1 align="center">
ONDEWO S2T Client Angular
</h1>
</div>
## Overview
`@ondewo/s2t-client-angular` is a compiled version of the [ONDEWO S2T API](https://github.com/ondewo/ondewo-s2t-api) using the [ONDEWO PROTO COMPILER](https://github.com/ondewo/ondewo-proto-compiler). Here you can find the S2T API [documentation](https://ondewo.github.io).
ONDEWO APIs use [Protocol Buffers](https://github.com/google/protobuf) version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. The same interface definition is used for gRPC versions of the API in all languages.
## Setup
Using NPM:
```shell
npm i --save @ondewo/s2t-client-angular
```
Using GitHub:
```shell
git clone https://github.com/ondewo/ondewo-s2t-client-angular.git ## Clone repository
cd ondewo-s2t-client-angular ## Change into repo-directoy
make setup_developer_environment_locally ## Install dependencies
```
## Package structure
```
npm
├── api
│ └── ondewo
│ └── s2t
│ ├── speech-to-text.pbconf.d.ts
│ ├── speech-to-text.pb.d.ts
│ └── speech-to-text.pbsc.d.ts
├── esm2022
│ ├── api
│ │ └── ondewo
│ │ └── s2t
│ │ ├── speech-to-text.pbconf.mjs
│ │ ├── speech-to-text.pb.mjs
│ │ └── speech-to-text.pbsc.mjs
│ ├── ondewo-s2t-client-angular.mjs
│ └── public-api.mjs
├── fesm2022
│ ├── ondewo-s2t-client-angular.mjs
│ └── ondewo-s2t-client-angular.mjs.map
├── ondewo-s2t-api
│ └── README.md
├── index.d.ts
├── LICENSE
├── package.json
├── public-api.d.ts
└── README.md
```