mafintosh / torrent-stream

The low level streaming torrent engine that peerflix uses
MIT License
1.94k stars 228 forks source link

Download torrents without disk writing #101

Closed mhriemers closed 9 years ago

mhriemers commented 9 years ago

Is it possible to download torrent files without writing anything to disk? Only in memory?

mafintosh commented 9 years ago

Yes! Pass https://github.com/mafintosh/torrent-memory-storage as the storage option

var engine = torrentStream('info-hash', {
  storage: require('torrent-memory-storage')
})