demo01.js
function hello(){ console.log("hello world"); }
exports.hello = hello;//留出接口
test.js
//加载模块 var app = require("./demo01.js");//也可填写("./demo01");
执行结果:
hello world