DEV Community

Shreyash Chavan
Shreyash Chavan

Posted on

 

Privateer - The Download / Stream Manager

Have you ever wanted to find a good file on the internet and watch it without downloading? No? Well, I did. And this was the result. WebTorrent is an awesome lib that allows you to stream torrents directly in your broswer. It's fast, lightweight and written in Javascript. I created Privateer because I had a use case scenario where I didn't want to archive the torrent and just wanted to watch it without having to download anything.

Using the search page, you can find file indexes (link to where file is on streaming or download server) or stream files directly or download them. Just specify index to file you want and click 'play' or 'download' accordingly.

here is repo

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.