torcache

0.0.3 • Public • Published

torcache.js

A node.js wrapper for torcache.net

Examples

For example, if you want to download the Ubuntu 13.04 64 bit torrent file and for some strange reason you happen to have the info hash, then you can do the following:

var torcache = require('torcache');
 
torcache('e50331a0a8499d95ef8ebd546113cd021275c877', 'ubuntu-server-13.04-64.torrent', function(err) {
  if (err) {
    console.log(err);
  } else {
    console.log('great success!');
  }
});

Now most people don't really have the info hash handy, so in that case I recommend using another library for the torrent finding part of the job. The http://github.com/ProjectMoon/flux library comes to mind as its search function returns a list of torrent objects with the infoHash property.

torcache(hash, path, callback)

  • hash a torrent info hash string
  • filename the path/filename the torrent file should be saved to
  • callback only one argument returned (err) - will be null if all went well

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i torcache

    Weekly Downloads

    0

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • pmorissette