HCL opensources CouchCompanion
I'm a big fan of Apache CouchDB, so I was very pleased when I got the permission to opensource (is that even a verb) a R&D project we were working on for a while, meet CouchCompanion
Fauxton as role model
We were asking us, how would CouchDB's admin ui Fauxton look like when you rebuild today, what would be the tech stack and new or enhanced features. This is what we can up with:
- build with webcomponents, namely Webawesome and Lit, no big framework like react or angular
- Native
fetch() - All JSON and JS Code editable with the Monaco editor (the one used in VSCode)
- Support to build Mango queries and indici
- Sync with version control (Github for the moment, fighting with CORS and CSP)
- dark/lght mode
- UI to configure OIDC IdP
... and more. There is a capability walkthrough available. But to really get a feel, just run the container:
docker run -d --name couch-companion -p 5984:5984 \
-e COUCHDB_USER=admin -e COUCHDB_PASSWORD=<choose one> \
-v couchdb_data:/opt/couchdb/data \
ghcr.io/hcl-tech-software/couch-companion:latest
The container is based on the official CouchDB image with Fauxton swapped out for CouchCompanion. Give it a spin!
Read more
Posted by Stephan H Wissel on 09 September 2026 | Comments (0) | categories: CouchDB WebComponents WebDevelopment


