Install a TerminusDB Client Library

Open inAnthropic

What you'll achieve By the end of this guide, you will have the TerminusDB client library installed and ready to use in your project.

This page covers installing the client library — the SDK you use to talk to TerminusDB from your application code. If you need to install the TerminusDB server itself, see Install TerminusDB (Docker).

Install the client

Requirements: Node.js 18+

Example: Bash
npm install terminusdb

This adds terminusdb to your package.json. You can also use it in a browser via CDN:

Example: HTML
<script src="https://unpkg.com/terminusdb/dist/terminusdb-client.min.js"></script>

Verify:

Example: Bash
node -e "const T = require('terminusdb'); console.log('terminusdb', T.version || 'installed')"

Next steps

Was this helpful?