For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
  • Introduction
    • Overview
    • Retired adapters
      • Overview
      • Result codes
      • Connectivity
      • Authentication
      • Connectivity
      • Dependencies
      • Installation location
      • URL paths
LogoLogo
Open sourceSupportFAQsDocs Home
Troubleshoot

Adapter dependencies

Was this page helpful?
Previous

Installation location

Next
Built with

Most adapter logic lives in shared runtime libraries that the adapter depends on. These dependencies must be installed inside the adapter’s own node_modules directory — not in theItential Platform home directory or any directory above the adapter.

To install dependencies correctly, run npm install from within the adapter directory:

$cd <IAP-Home>/node_modules/@namespace/adapter-home-dir
$npm install

For example, the adapter-utils dependency for an open-source adapter should be at:

<IAP-Home>/node_modules/@namespace/adapter-home-dir/node_modules/@itentialopensource/adapter-utils

Installing dependencies above the adapter directory — for example, by running npm install from theItential Platform home directory — can install incorrect versions that conflict with other adapters orItential Platform components.