Skip to content

Instantly share code, notes, and snippets.

View joshongit's full-sized avatar

Josh joshongit

View GitHub Profile
@joshongit
joshongit / index.html
Last active July 24, 2016 12:44
Sample Pouch db example with collate
<html>
<body>
<input type="text" id="keyVal"><button onclick="getResult()">Filter</button><button onclick="getAllDocs()">Show available doc</button><button onclick="generateDoc()">Generate Doc</button><button onclick="destroyDB()">Destroy DB & Reload</button>
<div id="result"></div>
<script src="//cdn.jsdelivr.net/pouchdb/latest/pouchdb.min.js"></script>
<script src="https://rawgit.com/pouchdb/collate/master/dist/pouchdb-collate.js"></script>
<script src="init.js"></script>
</body>
</html>