Node.js 在node.js中使用一个简单的模块
示例
什么是node.js模块(链接到文章):
模块将相关代码封装到单个代码单元中。创建模块时,这可以解释为将所有相关功能移动到文件中。
现在来看一个例子。想象所有文件都在同一目录中:
文件:printer.js
"use strict";
exports.printHelloWorld = function (){
console.log("你好,世界!!!");
}使用模块的另一种方法:
文件animals.js
"use strict";
module.exports = {
lion: function() {
console.log("ROAARR!!!");
}
};文件:app.js
通过转到目录并键入以下命令来运行此文件:nodeapp.js
"use strict";
//require('./path/to/module.js')节点要加载哪个模块
var printer = require('./printer');
var animals = require('./animals');
printer.printHelloWorld(); //prints "你好,世界!!!"
animals.lion(); //prints "ROAARR!!!"
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短