clients/js/examples/README.md
This directory contains examples for using both ChromaDB package options:
chromadb: Bundled package with all dependencies includedchromadb-client: Package with peer dependencies that you install separatelyThe Node.js example demonstrates how to use ChromaDB in a Node.js environment.
cd node
pnpm install
# Run with the default bundled package
pnpm dev
# Run with the bundled package explicitly
pnpm dev:bundled
# Run with the client package (peer dependencies)
pnpm dev:client
The browser example demonstrates how to use ChromaDB in a browser environment.
cd browser
pnpm install
# Run with the default bundled package
pnpm dev
# Run with the bundled package explicitly
pnpm dev:bundled
# Run with the client package (peer dependencies)
pnpm dev:client
chromadb) includes all embedding libraries as dependencies, making it easier to get started.chromadb-client) uses peer dependencies, giving you more control over which versions of embedding libraries you use. It also keeps your dependency tree leaner if you only need specific embedding libraries.Both packages offer identical functionality and API.