Simple user-friendly Chroma database administration WebUI.
This is an independent personal project not affiliated with or sponsored by Chroma.
The myChromaDbAdmin is a webpage that helps you navigate, manage, and interact with your data stored in the Chroma database.
The name myChromaDbAdmin is directly inspired by phpMyAdmin, a tool I frequently use and admire. Just as phpMyAdmin provides a powerful web interface for managing MySQL/MariaDb databases, this app aims to provide the same ease of use and accessibility for ChromaDB. 🙂
- A running instance of Chroma database. You can find installation instructions on the Chroma GitHub Repository.
- View and manage (create, delete, rename) collections and collections metadata in your Chroma database.
- Browse and manage (add, edit, clone, delete) documents content and metadata within collections.
- Frontend:
- HTML (EJS)
- CSS (Tailwind CSS)
- JavaScript (Alpine.js)
- Backend:
- Node.js
- Express.js
- The Chroma npm package
While working with ChromaDb locally, I found that the official TUI client had several limitations:
- it can only open one collection at a time from a local instance
- it lacks the ability to modify existing collections or documents
I developed this web app to provide a more flexible solution for browsing, inspecting, and managing vector store content directly from a browser.
- Clone the repository and install the dependencies:
npm install
- Build the styling and start the application:
npm run tailwind:css npm run start
- Open your web browser and navigate to
http://localhost:3000to access the myChromaDbAdmin interface.
You can find a detailed description and numerous screenshots in the Documentation folder.
The following items outline planned improvements and features for upcoming releases:
- Integrate TailwindCSS properly into the project (MVP is using the CDN)
- Make the database server address and port configurable
- Support multiple databases and tenants (not limited to defaults)
- Improve collection ordering in the sidebar (sort alphabetically)
- Fix metadata key/value handling:
- Allow newly added metadata keys to start empty
- Metadata key/value pairs sorted alphabetically by key
- Improve accessibility:
- Correct tab order
- Add useful keyboard shortcuts
- Implement user management:
- Login/authentication
- Basic access control (e.g. restrict users to specific collections)
- Add internationalization (i18n) and translation support
I'd love to hear your honest feedback on the app, positive or critical, and the reasons behind it. Feedback, questions, and ideas are very welcome. 🙂
- For bugs, feature requests, or concrete improvements, please use GitHub Issues so everything stays transparent and trackable.
- If you have feedback, general questions, need help with a specific setup, or prefer a more direct conversation, feel free to reach out to me outside of GitHub as well.
Contributions are welcome! Please fork the repository and submit a pull request.
The myChromaDbAdmin is licensed under the MIT License. Feel free to use and modify it according to your needs.
