torrent2magnet

Takes a torrent file and returns it's magnet uri.

Usage no npm install needed!

<script type="module">
  import torrent2magnet from 'https://cdn.skypack.dev/torrent2magnet';
</script>

README

torrent2magnet

npm Package License build status downloads per month Greenkeeper badge

Takes a torrent file and returns it's magnet uri.

Install

Install via npm install torrent2magnet

Usage

const torrent2magnet = require('torrent2magnet');

# Async
torrent2magnet(torrentUrl, options, (err, uri) => {
  if (err) {
    return console.error(err);
  }

  console.log(uri);
});

# Promise
torrent2magnet(torrentUrl, options).then(uri => {
  console.log(uri);
}).catch(err => {
  console.error(err);
});

# Sync
try {
  console.log(torrent2magnet(torrentUrl));
} catch (err) {
  console.log(err);
}

License

MIT

Fork of apsdehal/torrent-to-magnet.