I have 2 apps, each in a different folder and they need to share the same models.
I want to symlink the models folder from app A to a models folder in app B.
I\'
./shared/models/user.js ./app1/app.js var user = require('../shared/user.js'); ./app2/app.js var user = require('../shared/user.js');
I dont' see why you couldn't just load the models from a shared path.