# TypeScript client

> How do I use the Windmill TypeScript client with Bun or Deno?

The TypeScript client for Windmill allows you to interact with the Windmill platform using TypeScript in [Bun](https://bun.sh/) / [Deno](https://deno.land/) runtime. This client provides a set of functions and utilities to access Windmill resources and perform various operations.

The TypeScript Windmill SDK can be found at https://app.windmill.dev/tsdocs/modules.html

## Installation

Within Windmill, the client is available out of the box: import `windmill-client` in a Bun script or `npm:windmill-client` in a Deno script. For local development, install [Bun](https://bun.sh/docs/installation) or [Deno](https://docs.deno.com/runtime/getting_started/installation/) and the client is fetched from the [npm registry](https://www.npmjs.com/package/windmill-client).

```ts

```

```ts

```

## Usage

The TypeScript client provides several functions that you can use to interact with the Windmill platform. Here's an example of how to use the client to get a resource from Windmill:

```ts

}
```

```ts

}
```

In the example above, the `getResource` function is used to retrieve a resource with the path `'u/user/name'` from the Windmill platform. The returned resource can be further processed or used as needed in your application.
