admshao / obs-remote-js

OBS Remote API for Node.JS and browsers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OBS Remote JS

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.

Installation and Usage

#####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

About

OBS Remote API for Node.JS and browsers

License:MIT License


Languages

Language:JavaScript 80.3%Language:HTML 19.7%