
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
utorrent-api
Advanced tools
Node.js wrapper arround the uTorrent Web API.
Here is the basic usage of this module. You can find an advanded list of methods supported by uTorrent Web UI API on their website.
First you need to instanciate a new client object, and then set the credentials used to connect to the uTorrent Web UI.
Then you can do your calls to the API.
Here are the available methods :
Set the credentials used to access the uTorrent Web UI.
Fetch the token which will be used in each subsequent API calls. This method is directly called before an API call if needed, you don't need to call it by yourself.
Return an error to the callback, if an error occured when accessing the uTorrent API.
Call the specified API action. If the action do not require params (like 'list'), this argument can be ignored.
If you want to use the 'add-file' method, just specify a 'torrent_file' param with a buffer containing the torrent file to upload to the API.
Return an error to the callback (if one appeared) and an object containing the result sent back by the API.
var Client = require('utorrent-api');
var utorrent = new Client('localhost', '22222');
utorrent.setCredentials('admin', '123456');
utorrent.call('list', function(err, torrents_list) {
if(err) { console.log(err); return; }
console.log(torrents_list);
});
var request = require('request');
var Client = require('utorrent-api');
var fs = require('fs');
var utorrent = new Client('localhost', '22222');
utorrent.setCredentials('admin', '123456');
request({'uri' : 'http://releases.ubuntu.com/13.04/ubuntu-13.04-desktop-i386.iso.torrent', 'encoding': null}, function (error, response, torrentFileBuffer) {
utorrent.call('add-file', {'torrent_file': torrentFileBuffer}, function(err, data) {
if(err) { console.log('error : '); console.log(err); return; }
console.log('Successfully added torrent file !');
console.log(data);
});
});
var Client = require('utorrent-api');
var fs = require('fs');
var utorrent = new Client('localhost', '22222');
utorrent.setCredentials('admin', '123456');
utorrent.call('getprops', {'hash': 'daac7008e2e3a6e4321950c131690aca20c5a08a'}, function(err, data) {
if(err) { console.log('error : '); console.log(err); return; }
console.log(data);
});
FAQs
Interact with the uTorrent Web API
We found that utorrent-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.