Những gì tôi đang cố gắng đạt được là tạo ra một mô-đun có chứa nhiều chức năng trong đó.
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);
Vấn đề tôi gặp phải là firstParam
loại đối tượng và secondParam
chuỗi URL, nhưng khi tôi có nó luôn phàn nàn rằng loại đó là sai.
Làm thế nào tôi có thể khai báo nhiều module.exports trong trường hợp này?