├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── README.md ├── gulpfile.js ├── lib ├── .gitignore └── index.js ├── package.json └── test └── mongodb-test.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 6nGWSmJFqnNRanKntoR0p1PSYK2tUQlNk -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-* 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-* 4 | coverage 5 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/package.json -------------------------------------------------------------------------------- /test/mongodb-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crcn/mesh-mongodb/HEAD/test/mongodb-test.js --------------------------------------------------------------------------------