@ondewo/t2s-client-nodejs
v6.0.0
Published
ONDEWO Text to Speech (T2S) Client library for Nodejs
Downloads
73
Readme
Overview
@ondewo/t2s-client-nodejs
is a compiled version of the ONDEWO T2S API using the ONDEWO PROTO COMPILER. Here you can find the T2S API documentation.
ONDEWO APIs use Protocol Buffers 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:
npm i --save @ondewo/t2s-client-nodejs
Using GitHub:
git clone https://github.com/ondewo/ondewo-t2s-client-nodejs.git ## Clone repository
cd ondewo-t2s-client-nodejs ## Change into repo-directoy
make setup_developer_environment_locally ## Install dependencies
Package structure
npm
├── api
│ ├── google
│ │ └── protobuf
│ │ ├── empty_grpc_pb.js
│ │ ├── empty_pb.d.ts
│ │ └── empty_pb.js
│ └── ondewo
│ └── t2s
│ ├── text-to-speech_grpc_pb.d.ts
│ ├── text-to-speech_grpc_pb.js
│ ├── text-to-speech_pb.d.ts
│ └── text-to-speech_pb.js
├── LICENSE
├── package.json
├── public-api.d.ts
└── README.md