私が達成しようとしているのは、複数の関数を含む1つのモジュールを作成することです。
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を宣言できますか?