# @depot/cli Node.js package (https://depot.dev/changelog/2023-09-15-npm-package)

> Published 2023-09-15

We shipped a new Node.js package [@depot/cli](https://www.npmjs.com/package/@depot/cli) that you can install into your Node projects to invoke CLI calls directly from your code. No more needing to install the CLI, configure it, etc. You can now install the package and start using it.

```shell
pnpm add @depot/cli
```

```typescript
import {depot, depotBinaryPath} from '@depot/cli'

async function example() {
  console.log(depotBinaryPath())

  await depot(['build', '-t', 'org/repo:tag', '.'])
}
```

## For AI Agents

The full site index is at [llms.txt](https://depot.dev/llms.txt). Append `.md` to any documentation, blog, changelog, or customer URL to fetch its markdown source directly.