Skip to content

Instantly share code, notes, and snippets.

@acdcjunior
Last active August 29, 2015 14:11
Show Gist options
  • Save acdcjunior/30a8e13a614bade5b4ab to your computer and use it in GitHub Desktop.
Save acdcjunior/30a8e13a614bade5b4ab to your computer and use it in GitHub Desktop.
pdb2
<html>
<body>
<pre id="display"></pre>
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.0.5/es5-shim.min.js"></script>
<script src="//cdn.jsdelivr.net/pouchdb/3.2.0/pouchdb.min.js"></script>
<script src="index.js"></script>
</body>
</html>
var db = new PouchDB('kittens');
db.info().then(function (info) {
document.getElementById('display').innerHTML = 'We have at5 database: ' + JSON.stringify(info);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment