UNPKG

express-pouchdb

Version:

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

14 lines (11 loc) 230 B
"use strict"; var utils = require('../utils'); module.exports = function (app) { // 404 handler app.use(function (req, res) { utils.sendJSON(res, 404, { error: "not_found", reason: "missing" }); }); };