https://github.com/ed-itsolutions/anydesk-api
TypeScript module for interacting with the AnyDesk API
https://github.com/ed-itsolutions/anydesk-api
Last synced: about 1 month ago
JSON representation
TypeScript module for interacting with the AnyDesk API
- Host: GitHub
- URL: https://github.com/ed-itsolutions/anydesk-api
- Owner: Ed-ITSolutions
- Created: 2020-03-05T16:02:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:37:35.000Z (over 3 years ago)
- Last Synced: 2025-07-05T18:37:15.087Z (11 months ago)
- Language: TypeScript
- Size: 813 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# AnyDeskAPI
AnyDeskAPI is a TypeScript (JS) implementation of the [AnyDesk API](https://support.anydesk.com/REST-API).
## Install
```
npm install --save anydesk-api
# or
yarn add anydesk-api
```
The TypeScript types are bundled in the package and are installed with `anydesk-api`
## Usage
Import `AnyDeskAPI` from `anydesk-api`
```ts
import {AnyDeskAPI} from 'anydesk-api'
const api = AnyDeskAPI({
license: 'YOURLICENSEID',
apiPassword: 'YOURAPIPASSWORD'
})
```
Instead of `api` you can [desctructure](https://www.arcath.net/2019/11/destructuring-in-javascript) all the methods.