Is there a GUI client for PouchDB?
Asked Answered
R

1

6

I'm using PouchDB in conjunction with node.js to store my documents on the server, but during the course of development a number of documents which are flawed or need to be deleted have begun accumulating in the DB.

Is there a GUI client like SQL Studio which allows me to connect to the DB and manually edit or delete the files ?

Restitution answered 30/6, 2017 at 13:32 Comment(1)
Install couchdb, then sync your pouchdb db's to that couchdb server. Done, you have the data in FauxtonNally
Y
5

You can access a version of Fauxton (the CouchDB GUI) via the PouchDB Inspector Chrome extension.

You can also access it by installing pouchdb-server and opening http://localhost:5984/_utils in a browser.

Yvoneyvonne answered 1/7, 2017 at 4:28 Comment(3)
Thanks but the db I'm trying to look at is not in the browser but in node, I've looked at pouchdb-server but I can't get it to connect to the db I want, it only connects to some default db it starts with.Restitution
I don't know about connecting to pouchdb-server, but you could always replicated to pouchdb-server, then inspect it on the copy. I do know that there are no other decent GUIs available for pouch-db as I was looking for one for my projectYvoneyvonne
The Chrome extension is no longer available. The pouchdb-server works fine for thisHeadmost

© 2022 - 2024 — McMap. All rights reserved.