How can I share module-private data between 2 files in Node?

后端 未结 3 1898
深忆病人
深忆病人 2021-01-28 01:21

I would like to have a module for Node.js that is a directory with several files. I\'d like some vars from one file to be accessible from other file, but not from the files exte

相关标签:
3条回答
  • 2021-01-28 01:34

    I'd like some vars from one file to be accessible from other file, but not from the files external to the module

    Yes, it is possible. You can load that other file into your module and hand it over a privileged function that offers access to specific variables from your module scope, or just hand it over the values themselves:

    index.js:

    var foo = 'some value';
    module.exports.additional = require('./additional.js')(foo);
    module.exports.extra = require('./extra.js')(foo);
    

    extra.js:

    module.exports = function(foo){
      // some magic here
      var bar = foo; // foo is the foo from index.js
      // instead of assigning the magic to exports, return it
    };
    

    additional.js:

    module.exports = function(foo){
      // some magic here
      var qux = foo; // foo is the foo from index.js again
      // instead of assigning the magic to exports, return it
    };
    
    0 讨论(0)
  • 2021-01-28 01:38

    Can you just pass the desired stuff in?

    //index.js:
    var foo = 'some value';
    module.exports.additional = require('./additional.js')(foo);
    module.exports.extra = require('./extra.js')(foo);
    
    //extra.js:
    module.exports = function(foo){
      var extra = {};
      // some magic here
      var bar = foo; // where foo is foo from index.js
      extra.baz = function(req, res, next){};
      return extra;
    };
    
    //additional.js:
    module.exports = function(foo){
      var additonal = {};
      additional.deadbeef = function(req, res, next){
        var qux = foo; // here foo is foo from index.js as well
        res.send(200, qux);
      };
      return additional;
    };
    
    0 讨论(0)
  • 2021-01-28 01:54

    Okay, you may be able to do this with the "global" namespace:

    //index.js
    global.foo = "some value";
    

    and then

    //extra.js
    var bar = global.foo;
    
    0 讨论(0)
提交回复
热议问题