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: 17 days ago
JSON representation
A XBMC RPC client for node.js
- Host: GitHub
- URL: https://github.com/gtuk/nodebmc
- Owner: gtuk
- Archived: true
- Created: 2014-08-27T12:50:03.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T16:29:01.000Z (about 7 years ago)
- Last Synced: 2024-04-14T07:58:45.107Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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