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!!!"
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短