Apache CouchDB
Apache CouchDB is an open-source NoSQL database implement the document-based model store with JSON documents.
- GitHub Repository (6.0k β)
- Port(s) π²: 5984 (HTTP), 6984 (HTTPS)
The database may have a management page at /_utils
.
Common endpoints:
/_all_dbs
: list all databases/<db_name>/_all_docs
: list all documents IDs/<db_name>/<doc_id>
: fetch a document- ...