Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/gtuk/nodebmc

A XBMC RPC client for node.js
https://github.com/gtuk/nodebmc

Last synced: 2 months ago
JSON representation

A XBMC RPC client for node.js

Lists

README

        

nodebmc
=================

nodebmc is a client library for xbmc.

## Installation

From npm:

npm install nodebmc

From source:

git clone https://github.com/gtuk/nodebmc.git
npm link

## Usage

``` javascript
// remote video
var browser = require( 'nodebmc' ).createBrowser();
browser.on( 'deviceOn', function( device ) {
device.play( 'http://remotehost/video.mp4', function() {
console.info( 'video playing...' );
});
});
browser.start();
```

For more examples visit test folder