Quello che sto cercando di ottenere è creare un modulo che contenga più funzioni.
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);
Il problema che ho è che firstParam
è un tipo di oggetto e che secondParam
è una stringa URL, ma quando ho questo si lamenta sempre che il tipo è sbagliato.
Come posso dichiarare più module.exports in questo caso?