OBS Remote JS is a Javascript API for OBS Remote, a plugin for Open Broadcaster Software, which can be used in browsers and NodeJS.
It largely follows the API laid out in this plugin, but some callbacks have been changed for ease of use.
Documentation is provided in the docs
folder.
#####Node
npm install obs-remote
var obs = new OBSRemote();
obs.connect('localhost', 'myPassword');```
#####Browser (via Bower)
`bower install obs-remote`
```var obs = new OBSRemote();
obs.connect('localhost', 'myPassword');```
### License
OBS Remote JS is provided under the MIT license, which is available to read in the [LICENSE][] file.
[license]: LICENSE