A simple wrapper for the BitTorrent Sync API
npm install bittorrent-syncNode BitTorrent Sync
====================
A simple wrapper for the BitTorrent Sync API.
$ npm install bittorrent-sync
``javascript
var BTSync = require('bittorrent-sync');
var btsync = new BTSync({
host: 'localhost',
port: 8888
});
btsync.getFolders(function(err, data) {
if (err) throw err;
console.log(data);
});
``
API documentation can be found on the BitTorrent Sync Website
Node BitTorrent Sync is licensed under the MIT License.