Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a GUI client for PouchDB?

Tags:

pouchdb

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 ?

like image 428
George Bora Avatar asked Jun 30 '17 13:06

George Bora


People also ask

How does PouchDB store data?

It stores data locally using IndexedDB and WebSQL in the browser. You can also communicate with remote and local databases continuously using PouchDB without noticing any difference. It is available on GitHub and on other open source application.

Where does PouchDB store data?

In PouchDB, when the application is offline, the data is stored locally using WebSQL and IndexedDB in the browser. When the application is back online, it is synchronized with CouchDB and compatible servers.

What is PouchDB used for?

PouchDB is an open-source JavaScript database inspired by Apache CouchDB that is designed to run well within the browser. PouchDB was created to help web developers build applications that work as well offline as they do online.

What is the purpose of the options Rev argument of the get PouchDB method?

options. rev : Fetch specific revision of a document.


1 Answers

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.

like image 156
Carson Holzheimer Avatar answered Sep 21 '22 17:09

Carson Holzheimer