kona-mongo
v1.0.1
Published
mongodb client mixin for the kona application framework
Downloads
11
Maintainers
Readme
This kona mixin mounts a mongodb client connection to the abstract controller prototype so you can do mongo queries from controllers and elsewhere.
Example config in config/application.js
:
config.mongo = 'mongodb://localhost:27017/my_app_database';
These details will be passed straight to the mongo native client.
In your controller, you now have a mongo connection checked out from the pool:
var users = yield this.mongo.collection('users');
var user = yield users.findOne({name: /creed/});