Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 846 Bytes

readme.md

File metadata and controls

22 lines (16 loc) · 846 Bytes

piece-length

piece-length finds the optimal piece length for a given number of bytes. Optimal for what exactly? BitTorrent. VuzeWiki and TorrentFreak have both released some examples of ideal piece lengths, and this algorithm will reproduce them.

Build status

Browser support

Install

npm install piece-length

Example

var optimum = require('piece-length')

// 350mb should be 256kb
optimum(367001600) // => 262144

License

MIT