-
-
Save johnhamelink/960666 to your computer and use it in GitHub Desktop.
bootstrap file for mongoose models
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'), | |
m = require('mongoose'); | |
fs.readdirSync(__dirname).forEach(function(filename) { | |
var schemaName = filename.replace(/\.js$/, ''), | |
Schema = require('./' + schemaName); | |
m.model(schemaName, Schema); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment