NodeJS模块可以调用根函数吗?
function test(){
console.log("test function called");
}
var module = require("module");
module.INT();
模块
exports.INT = function() {
test();
};
我编写节点npm模块的原因是在本地文件的字节中使用createReadStream(
readStream.on('end'
加载(但不返回或等待在readStream'end'处理程序上返回)。由于Node.js的异步性质?当需要进入并调用模块时。