An AngularJS module and bower package wrapper around the nightly build of pouchDb.
The purpose of this module is to make it super easy to install and upgrade web applications to the latest pouchDb.
<script src="https://github.com/twilson63/angular-pouch/raw/master/components/pouchdb-nightly.min/index.js"></script>
<script src="https://github.com/twilson63/angular-pouch/raw/master/components/angular/angular.js"></script>
<script src="https://github.com/twilson63/angular-pouch/raw/master/components/angular-pouch/angular-pouch.js"></script>
angular.module('App', ['angular-pouch'])
.factory($db, function($pouch) {
return $pouch('idb://mydbname');
});
Pull requests are welcome.
MIT