Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-07style: always use bracesFeross Aboukhadijeh
2015-01-29styleFeross Aboukhadijeh
2015-01-27JavaScript Standard StyleFeross Aboukhadijeh
2015-01-16Use a map instead of multiple ternary statementsJoseph Dykstra
2015-01-16Renamed instances of 'video' to 'media'Joseph Dykstra
2015-01-16code styleFeross Aboukhadijeh
2015-01-16Add <audio> tag streaming support for mp3 filesmathiasvr
2014-10-20support streaming into video tagFeross Aboukhadijeh
close #144
2014-09-21merge `bittorrent-client` into this moduleFeross Aboukhadijeh
When I started the WebTorrent project I thought there were going to need to be two separate client implementations (bittorrent-client and webtorrent-client) that would get tied together in a higher-level module. Fortunately, this was not necessary because of the awesome “browser” field support in browserify. By substituting just a few modules, we can make the same module (webtorrent) work in node AND the browser, with the same codebase! So, from now on, you can just `require(‘webtorrent’)` in node or the browser, and it will just work. You can also `npm install webtorrent` if you want to use bittorrent in a node app or script. Lastly, you can `npm install webtorrent -g` if you want to use webtorrent as a command line app (it installs a `webtorrent` command).