├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── docs ├── coverage.html ├── docs.md ├── head.html ├── tail.html └── test.html ├── example ├── app.js └── coffee │ └── app.coffee ├── gulpfile.coffee ├── gulpfile.js ├── lib ├── actions.js ├── index.js ├── model.js └── routes.js ├── package.json └── test ├── index.coffee ├── mocha.opts └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | *.swp 4 | lib-cov/ 5 | *.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/README.md -------------------------------------------------------------------------------- /docs/coverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/docs/coverage.html -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/docs/docs.md -------------------------------------------------------------------------------- /docs/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/docs/head.html -------------------------------------------------------------------------------- /docs/tail.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/docs/test.html -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/example/app.js -------------------------------------------------------------------------------- /example/coffee/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/example/coffee/app.coffee -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/lib/actions.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/model.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/lib/routes.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/package.json -------------------------------------------------------------------------------- /test/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/test/index.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3chnoboy/koa-mongo-rest/HEAD/test/server.js --------------------------------------------------------------------------------