https://github.com/pboymt/transmission-client
https://github.com/pboymt/transmission-client
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pboymt/transmission-client
- Owner: pboymt
- Created: 2017-02-03T09:32:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T05:42:54.000Z (almost 8 years ago)
- Last Synced: 2024-04-30T04:04:54.152Z (about 1 year ago)
- Language: TypeScript
- Size: 37.1 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transmission-Client
### A Transmission Client on Node.js with TypeSctipt.
## Install
```bash
$ npm install transmission-client
```## Types Support
We have Visual Studio Code TypeSctipt support in this package instead of installing @types/* package from npm.## Usage
### Require/Import in JavaScript/TypeSctipt
In JavaScript:
```javascript
const Transmission = require('transmission-client').Transmission;
let Client = new Transmission();
```
In TypeSctipt:
```typescript
import { Transmission } from 'transmission-client';
let Client = new Transmission();
```