JSFiddle - React, Tailwind, and code Playground

by Evgeniy Malyarov

HTML

<script src="//cdn.jsdelivr.net/pouchdb/latest/pouchdb.js"></script>

JavaScript

var db = new PouchDB("https://fakepath.net/", {
	auth: {
  	username: "Иванов И.И.",
    password: "Секрет"
    }						
});
db.info()
	.then(function (info) {
  	console.log(info);
    })
  .catch(function (err) {
  	console.log(err);
    });