Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 594 Bytes

Readme.md

File metadata and controls

30 lines (19 loc) · 594 Bytes

AnyDeskAPI

AnyDeskAPI is a TypeScript (JS) implementation of the AnyDesk 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

import {AnyDeskAPI} from 'anydesk-api'

const api = AnyDeskAPI({
  license: 'YOURLICENSEID',
  apiPassword: 'YOURAPIPASSWORD'
})

Instead of api you can desctructure all the methods.