UNPKG

@ondewo/t2s-client-angular

Version:

ONDEWO Text 2 Speech (T2S) Client library for Angular

77 lines (64 loc) 2.94 kB
<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%2Ft2s-client-angular"><img src="https://badge.fury.io/js/%40ondewo%2Ft2s-client-angular.svg" alt="npm version" height="32"></a> </td> </tr> </table> <h1 align="center"> ONDEWO T2S Client Angular </h1> </div> ## Overview `@ondewo/t2s-client-angular` is a compiled version of the [ONDEWO T2S API](https://github.com/ondewo/ondewo-t2s-api) using the [ONDEWO PROTO COMPILER](https://github.com/ondewo/ondewo-proto-compiler). Here you can find the T2S 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/t2s-client-angular ``` Using GitHub: ```shell git clone https://github.com/ondewo/ondewo-t2s-client-angular.git ## Clone repository cd ondewo-t2s-client-angular ## Change into repo-directoy make setup_developer_environment_locally ## Install dependencies ``` ## Package structure ``` npm ├── api │ └── ondewo │ └── t2s │ ├── text-to-speech.pbconf.d.ts │ ├── text-to-speech.pb.d.ts │ └── text-to-speech.pbsc.d.ts ├── esm2022 │ ├── api │ │ └── ondewo │ │ └── t2s │ │ ├── text-to-speech.pbconf.mjs │ │ ├── text-to-speech.pb.mjs │ │ └── text-to-speech.pbsc.mjs │ ├── ondewo-t2s-client-angular.mjs │ └── public-api.mjs ├── fesm2022 │ ├── ondewo-t2s-client-angular.mjs │ └── ondewo-t2s-client-angular.mjs.map ├── index.d.ts ├── LICENSE ├── package.json ├── public-api.d.ts └── README.md ```