This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

character / scripts / test-obs-control.ts
437 B 16 lines
1import { OBSControlClient } from '../src/obs-control'; 2 3const client = new OBSControlClient(); 4 5console.log(JSON.stringify({ 6 url: process.env.OBS_WS_URL ?? 'ws://127.0.0.1:4455', 7 sceneName: process.env.OBS_SCENE_NAME ?? null, 8 textInputName: process.env.OBS_TEXT_INPUT_NAME ?? null, 9}, null, 2)); 10 11if (process.env.OBS_TEST_CONNECT === '1') { 12 await client.connect(); 13 console.log('obs connected'); 14 await client.disconnect(); 15} 16