Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 976 Bytes

README.md

File metadata and controls

52 lines (29 loc) · 976 Bytes

express-mongo-db Build Status

Get db connection in request

Install

$ npm install --save express-mongo-db

Usage

var app = require('express')();

var expressMongoDb = require('express-mongo-db');
app.use(expressMongoDb('mongodb://localhost/test'));

app.get('/', function (req, res, next) {
	req.db // => Db object
});

API

expressMongoDb(uri, [options])

uri

Required
Type: string

Connection string uri.

options

All options from MongoClient are accepted as well.

property

Type: String
Default: db

Property on request object in which db connection will be stored.

License

MIT © Vsevolod Strukchinsky