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.md19
-rwxr-xr-xbin/clone.sh27
2 files changed, 0 insertions, 46 deletions
diff --git a/README.md b/README.md
index ede3d58..3b902b4 100644
--- a/README.md
+++ b/README.md
@@ -703,15 +703,6 @@ WebTorrent is only possible due to the excellent work of the following contribut
<tr><th align="left">Diego Rodríguez B.</th><td><a href="https://github.com/DiegoRBaquero">GitHub/DiegoRBaquero</a></td><td><a href="http://twitter.com/DiegoRBaquero">Twitter/@DiegoRBaquero</a></td></tr>
</tbody></table>
-#### Clone the code
-
-```bash
-git clone https://github.com/feross/webtorrent.git
-cd webtorrent
-npm install
-./bin/cmd.js --help
-```
-
#### JavaScript Standard Style
WebTorrent uses [JavaScript Standard Style](https://github.com/feross/standard).
@@ -745,16 +736,6 @@ Disable by running this:
localStorage.removeItem('debug')
```
-#### Clone all dependencies
-
-WebTorrent is a modular BitTorrent client, so functionality is split up into many
-npm modules. You can `git clone` all the relevant dependencies with one command. This
-makes it easier to send PRs:
-
-```bash
-./bin/clone.sh
-```
-
### Talks about WebTorrent
- May 2015 (Data Terra Nemo) - [WebTorrent: Mother of all demos](https://www.youtube.com/watch?v=RRtNEcAaUO8)
diff --git a/bin/clone.sh b/bin/clone.sh
deleted file mode 100755
index 3b6ae9d..0000000
--- a/bin/clone.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env bash
-
-if [ "$#" -ne 1 ] || ! [ -d "$1" ]; then
- echo "Usage: $0 DIRECTORY_TO_CLONE_INTO" >&2
- exit 1
-fi
-
-pushd $1
-git clone git@github.com:feross/addr-to-ip-port.git
-git clone git@github.com:feross/bittorrent-dht.git
-git clone git@github.com:feross/bittorrent-protocol.git
-git clone git@github.com:feross/bittorrent-swarm.git
-git clone git@github.com:feross/bittorrent-tracker.git
-git clone git@github.com:feross/create-torrent.git
-git clone git@github.com:feross/load-ip-set.git
-git clone git@github.com:feross/magnet-uri.git
-git clone git@github.com:feross/parse-torrent-file.git
-git clone git@github.com:feross/parse-torrent.git
-git clone git@github.com:feross/simple-peer.git
-git clone git@github.com:feross/string2compact.git
-git clone git@github.com:feross/torrent-discovery.git
-git clone git@github.com:feross/ut_metadata.git
-git clone git@github.com:feross/ut_pex.git
-git clone git@github.com:fisch0920/bittorrent-peerid.git
-git clone git@github.com:fisch0920/ip-set.git
-popd
-./node_modules/.bin/zelda $1