> For the complete documentation index, see [llms.txt](https://alfredo-reyes-montero.gitbook.io/tello-dji/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alfredo-reyes-montero.gitbook.io/tello-dji/frameworks/nodejs/tello-api-client.md).

# Tello-api-client

Tello API Client for Node.js.\
API details: <https://dl-cdn.ryzerobotics.com/downloads/tello/0228/Tello+SDK+Readme.pdf>

## Usage

```
import { TelloClient } from 'tello-api-client'

const cli = new TelloClient(IP_ADRESS, PORT);
cli.command();
cli.takeoff();

setTimeout(() => {
  cli.land();
}, 5000);
```
