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
diff options
context:
space:
mode:
-rw-r--r--README.md11
-rw-r--r--docs/get-started.md4
2 files changed, 7 insertions, 8 deletions
diff --git a/README.md b/README.md
index dbbbf3f..12156d6 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ they can connect to both normal *and* web peers. We hope other clients will foll
for adding new extensions
- **Comprehensive test suite** (runs completely offline, so it's reliable and fast)
-#### Browser-only features
+#### Browser/WebRTC environment features
- **WebRTC data channels** for lightweight peer-to-peer communication with **no plugins**
- **No silos.** WebTorrent is a P2P network for the **entire web.** WebTorrent clients
@@ -92,15 +92,10 @@ they can connect to both normal *and* web peers. We hope other clients will foll
<p align="center">
<a href="https://saucelabs.com/u/webtorrent">
- <img src="https://saucelabs.com/browser-matrix/webtorrent.svg"
- alt="Sauce Labs Build">
+ <img src="https://saucelabs.com/browser-matrix/webtorrent.svg" alt="Sauce Labs">
</a>
</p>
-#### Node-only features
-
-- Stream to **AirPlay**, **Chromecast**, **VLC player**, and many other devices/players
-
### Install
To install WebTorrent for use in node or the browser with `require('webtorrent')`, run:
@@ -269,7 +264,7 @@ There are many supported streaming options:
--stdout standard out [implies --quiet]
```
-In addition to magnet uris, webtorrent supports [many ways to specify a torrent](#clientaddtorrentid-opts-function-ontorrent-torrent-).
+In addition to magnet uris, webtorrent supports [many ways](docs/api.md#clientaddtorrentid-opts-function-ontorrent-torrent-) to specify a torrent.
### Modules
diff --git a/docs/get-started.md b/docs/get-started.md
index 29bf5ca..366c891 100644
--- a/docs/get-started.md
+++ b/docs/get-started.md
@@ -80,6 +80,10 @@ dragDrop('body', function (files) {
This example uses the [`drag-drop`][drag-drop] package, to make the HTML5 Drag and
Drop API easier to work with.
+**Note:** If you do not use browserify, use the standalone file
+[`dragdrop.min.js`](https://raw.githubusercontent.com/feross/drag-drop/master/dragdrop.min.js).
+This exports a `DragDrop` function on `window`.
+
### Download and save a torrent (in Node.js)
```js