aa.js

module.exports=function(){
	console.log("我在aa中的配置文件");
}

bb.js

testfun=require("./aa");
testfun()

js在同一目录下,都在HelloWord1下