├── .gitignore ├── LICENSE ├── README.md ├── covercouch.js ├── cvr ├── acl.js ├── config.js ├── ddoc.js ├── lib.js ├── listreduce.js ├── logger.js ├── rater.js ├── restmap.js ├── router.js └── worker.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node-modules/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/README.md -------------------------------------------------------------------------------- /covercouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/covercouch.js -------------------------------------------------------------------------------- /cvr/acl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/acl.js -------------------------------------------------------------------------------- /cvr/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/config.js -------------------------------------------------------------------------------- /cvr/ddoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/ddoc.js -------------------------------------------------------------------------------- /cvr/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/lib.js -------------------------------------------------------------------------------- /cvr/listreduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/listreduce.js -------------------------------------------------------------------------------- /cvr/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/logger.js -------------------------------------------------------------------------------- /cvr/rater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/rater.js -------------------------------------------------------------------------------- /cvr/restmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/restmap.js -------------------------------------------------------------------------------- /cvr/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/router.js -------------------------------------------------------------------------------- /cvr/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/cvr/worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermouth/covercouch/HEAD/package.json --------------------------------------------------------------------------------