lint node.js文件有很多工具,但我似乎無法找到一個遞歸地通過require的工具。例如 -下面的節點js linter需要
var otherModule = require('./otherModule.js');
console.log(otherModule.func1());
如果func1未在其他模塊中定義,是否有可以引發錯誤的應用程序?
lint node.js文件有很多工具,但我似乎無法找到一個遞歸地通過require的工具。例如 -下面的節點js linter需要
var otherModule = require('./otherModule.js');
console.log(otherModule.func1());
如果func1未在其他模塊中定義,是否有可以引發錯誤的應用程序?
如果你希望得到一個很好的答案,請考慮在你的問題中增加更多的內容。首先告訴我們你試過了什麼? – CallumDA