Current context for LoopBack applications, based on node-continuation-local-storage.
- Add
per-request
middleware to yourserver/middleware-config.json
:
{
"initial": {
"loopback-context#per-request": {
}
}
}
- Then you can access the context from your code:
var LoopBackContext = require('loopback-context');
// ...
MyModel.myMethod = function(cb) {
var ctx = LoopBackContext.getCurrentContext();
ctx.get('key');
ctx.set('key', { foo: 'bar' });
});
See also https://docs.strongloop.com/display/APIC/Using+current+context