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!!!"
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短