mongo-entity
v0.0.3-5
Published
mongo-entity ============
Downloads
705
Readme
mongo-entity
Mongo entity framework.
Usage
configure:
in express app configuration add addLocals middleware and decorate middleware:
app.use(middlewares.addLocals);
app.use(function(req, res, next){
req.mongoRef = mongoDB;
//your decorator here...
next();
});While mongoDB is your mongo-skin object.
