transmission-api
v0.0.1
Published
High Level API for the Transmission RPC interface
Downloads
7
Maintainers
Readme
transmission-api
High level api for Transmission RPC written in Typescript
Provides a wrapper over the RPC interface of the Transmission bittorrent client.
Usage:
npm install transmission-api
- Import the client using
import {Client} from "transmission-api"
- Create a new instance of the client class, and go wild!
let client = new Client()
See the examples directory for information
Building:
- Clone or download the repository
- Ensure typescript and gulp are installed
- Install dev dependencies using
npm install --save-dev
- Make changes and build using
gulp build
ornpm run build