deluge
v7.0.0
ofetch を使用した大洪水用の TypeScript API ラッパー
npm install @ctrl/deluge
import { Deluge } from '@ctrl/deluge' ;
const client = new Deluge ( {
baseUrl : 'http://localhost:8112/' ,
password : 'deluge' ,
} ) ;
async function main ( ) {
const res = await client . getAllData ( ) ;
console . log ( res ) ;
}
ドキュメント: https://deluge.vercel.app
これらの機能は torrent クライアント間で正規化されています。複数の torrent クライアントを簡単にサポートできます。サポートされている代替の torrent クライアントについては、以下を参照してください。
すべての torrent データとラベル オブジェクトの配列を返します。データは正規化されており、ネイティブのlistTorrents()
の出力と一致しません。
const data = await client . getAllData ( ) ;
console . log ( data . torrents ) ;
1 つの torrent データを返します
const data = await client . getTorrent ( ) ;
console . log ( data ) ;
トレントを一時停止または再開する
const paused = await client . pauseTorrent ( ) ;
console . log ( paused ) ;
const resumed = await client . resumeTorrent ( ) ;
console . log ( resumed ) ;
トレントを削除します。デフォルトではディスク上のデータは削除されません。
// does not remove data on disk
const result = await client . removeTorrent ( 'torrent_id' , false ) ;
console . log ( result ) ;
// remove data on disk
const res = await client . removeTorrent ( 'torrent_id' , true ) ;
console . log ( res ) ;
送信 - https://github.com/scttcper/transmission
qbittorrent - https://github.com/scttcper/qbittorrent
utorrent - https://github.com/scttcper/utorrent
rtorrent - https://github.com/scttcper/rtorrent
docker run -d
--name=deluge
-e PUID=1000
-e PGID=1000
-e TZ=Etc/UTC
-e DELUGE_LOGLEVEL=error `#optional`
-p 8112:8112
-p 6881:6881
-p 6881:6881/udp
--restart unless-stopped
lscr.io/linuxserver/deluge:latest