Popularity
4.6
Stable
Activity
0.0
Stable
629
25
81
Code Quality Rank:
L5
Monthly Downloads: 0
Programming language: JavaScript
License: BSD 3-clause "New" or "Revised" License
Tags:
Command Line Apps
Latest version: v2.0.0
torrent alternatives and similar modules
Based on the "Command Line Apps" category.
Alternatively, view torrent alternatives based on common mentions on social networks and blogs.
-
Standard
🌟 JavaScript Style Guide, with linter & automatic code fixer -
ignite
Infinite Red's battle-tested React Native project boilerplate, along with a CLI, component/model generators, and more! -
Live Server
A simple development http server with live reload capability. -
speed-test
Test your internet connection speed and ping using speedtest.net from the CLI -
rtail
rtail(1) - Terminal output to the browser in seconds, using UNIX pipes. -
David
:eyeglasses: Node.js module that tells you when your package npm dependencies are out of date. -
Whatspup
:white_square_button: WhatsApp chat from commandline/console/cli using GoogleChrome puppeteer -
diff2html-cli
Pretty diff to html javascript cli (diff2html-cli) -
pjs
Pipeable javascript. Quickly filter, map, and reduce from the terminal -
kill-tabs
Kill all Chrome tabs to improve performance, decrease battery usage, and save memory -
tty-table
Terminal table for Windows, Linux, and MacOS. Written in nodejs. Also works in browser console. Word wrap, padding, alignment, colors, Asian character support, per-column callbacks, and you can pass rows as objects or arrays. Backwards compatible with Automattic/cli-table. -
normit
Translations with speech synthesis in your terminal as a node package -
npm-name
Check whether a package or organization name is available on npm
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of torrent or a related project?
Popular Comparisons
README
torrent
Download torrents from the command line
[](screenshot.png)
usage
torrent <magnet link OR path to .torrent file>
Download a torrent from a magnet link to torrent file.
torrent create <directory OR file> {-o outfile.torrent}
Create a torrent file from a directory or file.
If an output file isn't specified with `-o`, the torrent file will be
written to stdout.
torrent seed <torrent file>
Seed a torrent file.
torrent info <torrent file>
Print information about a .torrent file to stdout as JSON.
torrent ls OPTIONS <torrent file>
List all the files in a .torrent file.
OPTIONS are like the `ls` command:
-s Show file sizes in bytes alongside file paths.
-h Show file sizes in human units when `-s` is on.
download a torrent
e.g. to download ubuntu 14.04 ISO
torrent "magnet:?xt=urn:btih:4d753474429d817b80ff9e0c441ca660ec5d2450&dn=Ubuntu+14.04+64+bit&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&tr=udp%3A%2F%2Ftracker.istole.it%3A6969&tr=udp%3A%2F%2Fopen.demonii.com%3A1337"
or via .torrent file:
torrent ubuntu-14.04.iso.torrent
it will print progress:
$ torrent ubuntu-14.04.iso.torrent
1 file(s) in torrent
ubuntu-14.04.iso
Connected to 35/37 peers
Downloaded 5.47 MB (1.09 MB/s) with 0 hotswaps
Uploaded 0 B (0 B/s)
create a torrent
You can create a torrent file with torrent create
:
mkdir xyz; echo beep > xyz/a.txt; echo boop > xyz/b.txt
torrent create xyz/ -o xyz.torrent