0.0.5 • Published 8 months ago

@jtorm/nodejs-context v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Node.js Context

Node.js context example usage which, for example, can also be used as a base.

const context = require('./src/context');

const jTormSessionModel = {
    get: function () {},
    set: function () {}
};

(async function() {
    await context(jTormSessionModel, null, {}, 1);
})();