├── .gitignore ├── README.md ├── index.js ├── lib ├── routes │ ├── attachments.js │ ├── db.js │ └── document.js └── utils.js ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/index.js -------------------------------------------------------------------------------- /lib/routes/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/lib/routes/attachments.js -------------------------------------------------------------------------------- /lib/routes/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/lib/routes/db.js -------------------------------------------------------------------------------- /lib/routes/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/lib/routes/document.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/pouchdb-express-router/HEAD/server.js --------------------------------------------------------------------------------