在Node.js中声明多个module.exports


242

我要实现的目标是创建一个包含多个功能的模块。

module.js:

module.exports = function(firstParam) { console.log("You did it"); },
module.exports = function(secondParam) { console.log("Yes you did it"); }, 
// This may contain more functions

main.js:

var foo = require('module.js')(firstParam);
var bar = require('module.js')(secondParam);

firstParam遇到的问题是,这是一个对象类型,并且secondParam是一个URL字符串,但是当我遇到该问题时,它总是抱怨该类型是错误的。

在这种情况下,如何声明多个module.exports?


2
我显然错过了该范例的一些关键部分,因为它使我不知所措。
约书亚·品特

Answers:


538

您可以执行以下操作:

module.exports = {
    method: function() {},
    otherMethod: function() {},
};

要不就:

exports.method = function() {};
exports.otherMethod = function() {};

然后在调用脚本中:

const myModule = require('./myModule.js');
const method = myModule.method;
const otherMethod = myModule.otherMethod;
// OR:
const {method, otherMethod} = require('./myModule.js');

25
始终使用module.exports = {}而不是module.method = ...stackoverflow.com/a/26451885/155740
Scotty 2014年

9
我在module.method这里没有使用任何地方... only exports.method,它只是对的引用module.exports.method,因此其行为方式相同。唯一的区别是我们没有定义module.exports,因此默认为{},除非我弄错了。
混搭2014年

@mash通过使用以下命令将其工作在另一个文件中var otherMethod = require('module.js')(otherMethod);吗?即,将在该行需要的otherMethod功能,就好像它是页面上的唯一功能,出口已经:module.exports = secondMethod;
YPCrumble 2015年

3
您可以做的@YPCrumble var otherMethod = require('module.js').otherMethod
mash

您可以在与此匹配的其他程序中显示匹配要求吗?
NealWalters

136

要导出多个功能,您可以像这样列出它们:

module.exports = {
   function1,
   function2,
   function3
}

然后在另一个文件中访问它们:

var myFunctions = require("./lib/file.js")

然后,您可以通过调用以下命令来调用每个函数:

myFunctions.function1
myFunctions.function2
myFunctions.function3

完美答案,我应该将此答案标记为正确答案。
Vishnu Ranganathan

你们是如何使用的require("./lib/file.js")?我需要使用require("../../lib/file.js"),否则它将无法正常工作。
Antonio Ooi

11
您也可以在访问它们时执行此操作:const { function1, function2, function3 } = require("./lib/file.js")这使您可以直接调用它们(例如function1而不是myFunctions.function1
David Yeiser

这是最干净,最简单的方法!
宙斯

42

除了@mash答案,我建议您始终执行以下操作:

const method = () => {
   // your method logic
}

const otherMethod = () => {
   // your method logic 
}

module.exports = {
    method, 
    otherMethod,
    // anotherMethod
};

注意这里:

  • 您可以打电话methodotherMethod,您将需要很多
  • 您可以在需要时快速将方法隐藏为私有方法
  • 对于大多数IDE来说,这更容易理解和自动完成代码;)
  • 您也可以使用相同的技术进行导入:

    const {otherMethod} = require('./myModule.js');


请注意,这里使用了ES6对象初始化捷径- developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/...
chrismarx

1
恕我直言,这是更好的答案,因为它解决了otherMethod的访问方法。感谢您指出了这一点。
杰夫·比格里

15

这只是供我参考,因为我可以尝试实现的目标。

在里面 module.js

我们可以做这样的事情

    module.exports = function ( firstArg, secondArg ) {

    function firstFunction ( ) { ... }

    function secondFunction ( ) { ... }

    function thirdFunction ( ) { ... }

      return { firstFunction: firstFunction, secondFunction: secondFunction,
 thirdFunction: thirdFunction };

    }

在里面 main.js

var name = require('module')(firstArg, secondArg);

10

module.js:

const foo = function(<params>) { ... }
const bar = function(<params>) { ... } 

//export modules
module.exports = {
    foo,
    bar 
}

main.js:

// import modules
var { foo, bar } = require('module');

// pass your parameters
var f1 = foo(<params>);
var f2 = bar(<params>);

8

一种实现方法是在模块中创建一个新对象,而不是替换它。

例如:

var testone = function () {
    console.log('test one');
};
var testTwo = function () {
    console.log('test two');
};
module.exports.testOne = testOne;
module.exports.testTwo = testTwo;

并致电

var test = require('path_to_file').testOne:
testOne();

与其他答案相比,这对我来说是一种非常简单的方法!真的好了
辛格


6

您可以编写一个在其他功能之间手动委派的功能:

module.exports = function(arg) {
    if(arg instanceof String) {
         return doStringThing.apply(this, arguments);
    }else{
         return doObjectThing.apply(this, arguments);
    }
};

这是实现函数重载的一种方法,但不是很优雅。我认为Mash的答案更干净,更能显示意图。
Nepoxx

5

用这个

(function()
{
  var exports = module.exports = {};
  exports.yourMethod =  function (success)
  {

  }
  exports.yourMethod2 =  function (success)
  {

  }


})();

3

两种类型的模块导入和导出。

类型1(module.js):

// module like a webpack config
const development = {
  // ...
};
const production = {
  // ...
};

// export multi
module.exports = [development, production];
// export single
// module.exports = development;

类型1(main.js):

// import module like a webpack config
const { development, production } = require("./path/to/module");

类型2(module.js):

// module function no param
const module1 = () => {
  // ...
};
// module function with param
const module2 = (param1, param2) => {
  // ...
};

// export module
module.exports = {
  module1,
  module2
}

类型2(main.js):

// import module function
const { module1, module2 } = require("./path/to/module");

如何使用导入模块?

const importModule = {
  ...development,
  // ...production,
  // ...module1,
  ...module2("param1", "param2"),
};

3

你也可以像这样导出它

const func1 = function (){some code here}
const func2 = function (){some code here}
exports.func1 = func1;
exports.func2 = func2;

或像这样的匿名功能

    const func1 = ()=>{some code here}
    const func2 = ()=>{some code here}
    exports.func1 = func1;
    exports.func2 = func2;

2

module1.js:

var myFunctions = { 
    myfunc1:function(){
    },
    myfunc2:function(){
    },
    myfunc3:function(){
    },
}
module.exports=myFunctions;

main.js

var myModule = require('./module1');
myModule.myfunc1(); //calling myfunc1 from module
myModule.myfunc2(); //calling myfunc2 from module
myModule.myfunc3(); //calling myfunc3 from module

2

有多种方法可以执行此操作,下面将介绍一种方法。只是假设您有这样的.js文件。

let add = function (a, b) {
   console.log(a + b);
};

let sub = function (a, b) {
   console.log(a - b);
};

您可以使用以下代码段导出这些功能,

 module.exports.add = add;
 module.exports.sub = sub;

您可以使用此代码段使用导出的功能,

var add = require('./counter').add;
var sub = require('./counter').sub;

add(1,2);
sub(1,2);

我知道这是一个较晚的答复,但希望能有所帮助!


0
module.exports = (function () {
    'use strict';

    var foo = function () {
        return {
            public_method: function () {}
        };
    };

    var bar = function () {
        return {
            public_method: function () {}
        };
    };

    return {
        module_a: foo,
        module_b: bar
    };
}());

0

如果在模块文件而不是简单对象中声明一个类

文件:UserModule.js

//User Module    
class User {
  constructor(){
    //enter code here
  }
  create(params){
    //enter code here
  }
}
class UserInfo {
  constructor(){
    //enter code here
  }
  getUser(userId){
    //enter code here
    return user;
  }
}

// export multi
module.exports = [User, UserInfo];

主文件:index.js

// import module like
const { User, UserInfo } = require("./path/to/UserModule");
User.create(params);
UserInfo.getUser(userId);

0

您也可以使用这种方法

module.exports.func1 = ...
module.exports.func2 = ...

要么

exports.func1 = ...
exports.func2 = ...

0

在此处添加帮助的人:

该代码块将帮助向cypress index.js插件中添加多个插件-> cypress-ntlm-authcypress env文件选择

const ntlmAuth = require('cypress-ntlm-auth/dist/plugin');
const fs = require('fs-extra');
const path = require('path');

const getConfigurationByFile = async (config) => {
  const file = config.env.configFile || 'dev';
  const pathToConfigFile = path.resolve(
    '../Cypress/cypress/',
    'config',
    `${file}.json`
  );
  console.log('pathToConfigFile' + pathToConfigFile);
  return fs.readJson(pathToConfigFile);
};

module.exports = async (on, config) => {
  config = await getConfigurationByFile(config);
  await ntlmAuth.initNtlmAuth(config);
  return config;
};
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.