> For the complete documentation index, see [llms.txt](https://dcli.onepub.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dcli.onepub.dev/added-dcli-to-your-project.md).

# Add DCli to your project

If you are just using the DCli API (and not the DCli tools) then adding DCli to your existing app is like adding any other Dart package to your app.

From the CLI

```
cd my/dart/project
dart pub add dcli
```

Now in your Dart code, you can use:

```
import 'package:dcli/dcli.dart';
```

You now have access to the full DCli API.
