1
將依賴關係傳遞給nodejs模塊的最佳方式是什麼?我正在使用gulp browserify,並且我有我的代碼的以下設置。在nodejs模塊中傳遞節點間依賴關係
index.js
var a = require('./a.js');
var b = require('./b.js');
b.test(a);
a.js
module.exports = {
foo: function() {
console.log('Foo called!');
}
}
b.js
module.exports = {
bar: function() {
console.log('Bar called!');
},
test: function(a) {
a.foo();
}
}
'路過dependencies' - 什麼你的意思是? – thefourtheye
你有什麼問題嗎? –
@thefourtheye我只想使用模塊「a」的屬性到模塊「b」中。雖然代碼工作正常,但想知道什麼是管理依賴關係的最佳實踐。 我不確定這是什麼正確的術語,但我希望你能理解我的問題。 –