我在 hello.js 文件中编写了一个函数
dep1=require('dependency');
function hello(Args, callback){
modifiedData= dep1.someFunction(Args);
console.log(modifiedData);
callback(modifiedData);
}
module.exports=hello;
我将如何在其他文件中重新使用此功能?
h=require("./hello");
h.hello("Howdy!", function(err,args){
do something;
}
任何指针?