PouchDB Installation



Download and Install Node.js

Download npm

  • Now install npm (Node.js Package Manager).

Install PouchDB

  • Execute the following code on Node.js command prompt to install PouchDB:
npm install pouchdb  
 Install PouchDB

 Install PouchDB

Install PouchDB Server

  • Execute the following code on Node.js command prompt to install PouchDB:
npm install -g pouchdb-server  
 Install PouchDB
 Install PouchDB

Set a local Port number

  • Now set a port to run PouchDB:
pouchdb-server --port 5984   
 Install PouchDB
  • You are ready to use PouchDB with Node.js command prompt. Open Node.js command prompt, start server by using the following command:
pouchdb-server --port 5984  
  • And do all the operation of PouchDB.
 Install PouchDB

Install PouchDB GUI

  • Go to its official website and download PouchDB.
  • Download pouchdb-6.3.4.min.js to your working directory and include it in your JavaScript as shown in the below command.
<script src="pouchdb-6.3.4.min.js"></script>   
 Install PouchDB
  • After installing PouchDB, open local port http://127.0.0.1:5000 to see the welcome message.
 Install PouchDB
  • You can open to see the complete GUI of PouchDB. You can easily do all operation just same as we do in CouchDB database.
 Install PouchDB


Related Searches to PouchDB Installation