模块
在Node环境中,一个.js文件就称之为一个模块(module)。
一个模块:
function greet(name) {
console.log(s + ', ' + name + '!');
}
module.exports = greet; //在模块中对外输出变量
使用模块:
var greet = require('./hello');
var s = 'Michael';
greet(s); // Hello, Michael!