UNPKG

express-pouchdb

Version:

Express submodule with a CouchDB-style REST interface to PouchDB.

14 lines (12 loc) 308 B
"use strict"; module.exports = function enableDiskSize(app) { app.daemonManager.registerDaemon({ start: function (PouchDB) { PouchDB.plugin(require('pouchdb-size')); } }); app.dbWrapper.registerWrapper(function (name, db, next) { db.installSizeWrapper(); return next(); }); };