特点
关键字
exports , module , require
exports
exports 变量是在模块的文件级别作用域内有效的,它在模块被执行前被赋予 module.exports 的值。
它有一个快捷方式,以便 module.exports.f = … 可以被更简洁地写成 exports.f = …
注意,就像任何变量,如果一个新的值被赋值给 exports,它就不再绑定到 module.exports:
1 2
| module.exports.hello = true; exports = { hello: false };
|
Node导出模块常用方式
到处命名空间
1 2 3 4 5
| const fs = require('fs'); fs.unlink('/tmp/hello', (err) => { if (err) throw err; console.log('成功删除 /tmp/hello'); });
|
导出函数
1 2 3 4 5 6 大专栏 CommonJs7
| module.exports = function(){ };
const express = require('./express'); const app = express();
|
导出高阶函数
1 2 3 4 5 6 7 8 9 10 11 12
| module.exports = function(path){ return function(req,res,next){ } } const path = require('path'); const express = require('express'); const favicon = require('./serve-favicon'); const app = express(); app.use(favicon(path.join(__dirname, '/public/favicon.ico')));
|