transmission-api-angular
v0.0.1
Published
High Level API for the Transmission RPC interface
Downloads
4
Maintainers
Readme
transmission-api
An eddited version of the High level api for Transmission RPC written in Typescript.
Removed the fs package so it can be used in Front-end-frameworks like Angular
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