⛳
Node.js サンプル
事前準備
ダウンロード
サンプルコードをダウンロードします。
$ git clone -b develop \
https://yysystem-gitlab.com/yy-admin-developer/yy-system-api-sampl
es.git
インストール
ディレクトリを移動して, npmパッケージをインストールします。
$ cd yy-system-api-samples/speech/node
Mac, もしくはLinuxの場合,
$ npm install -g npm
$ npm install -g yarn
$ chmod +x proto-gen.sh
$ yarn proto:gen
Windowsの場合,
> Set-ExecutionPolicy RemoteSigned
> npm install -g npm
> npm install -g yarn
> yarn install
> icacls proto-gen.sh /grant Everyone:RX
> yarn proto:gen
実行
nodeアプリのルートディレクトリ(yy-system-api-samples/speech/node/)で下記コマンドを実行します。
$ API_KEY=[SET_YOUR_API_KEY] \
API_ENDPOINT=[SET_THE_TARGET_ENDPOINT] \
API_PORT=[SET_THE_TARGET_PORT] \
yarn start
パラメータ | 値 | 説明 |
---|---|---|
API_KEY | [APIキー] | 開発者用コンソールで発行したAPIキーを使用 |
API_ENDPOINT | api-grpc.yysystem2021.com | ターゲットエンドポイント |
API_PORT | 50051 | ターゲットポート番号 |
$ yarn start
Discussion