@ctrl/deluge
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "@ctrl/deluge", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "Scott Cooper <scttcper@gmail.com>", |
@@ -1,3 +0,25 @@ | ||
# deluge | ||
# deluge [![npm](https://img.shields.io/npm/v/@ctrl/deluge.svg?maxAge=3600)](https://www.npmjs.com/package/deluge) [![build status](https://travis-ci.com/TypeCtrl/deluge.svg?branch=master)](https://travis-ci.org/typectrl/deluge) [![coverage status](https://codecov.io/gh/typectrl/deluge/branch/master/graph/badge.svg)](https://codecov.io/gh/typectrl/deluge) | ||
wip | ||
> TypeScript api wrapper for [deluge](https://deluge-torrent.org/) using [got](https://github.com/sindresorhus/got) | ||
### Install | ||
```bash | ||
npm install @ctrl/deluge | ||
``` | ||
### Use | ||
```ts | ||
import { Deluge } from '@ctrl/deluge'; | ||
const deluge = new Deluge({ | ||
baseURL: 'http://localhost:8112/', | ||
password: 'deluge', | ||
}); | ||
async function main() { | ||
const res = await deluge.listTorrents(); | ||
console.log(res.result); | ||
} | ||
``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
113595
26