- Node.js >= 18
$ yarn add voicevox-client
import Client from "voicevox-client";
const client = new Client("http://127.0.0.1:50021");
async function main() {
const audioquery = await client.createAudioQuery("こんにちは", 1);
await audioquery.synthesis(1);
}