node.js模块系统的用法
创建一个mian.js文件:
- var hello = require('./hello');
- hello.world();
创建hello.js文件:
- exports.world = function() {
- console.log('Hello World');
- }
语法:
module.exports = function() {
// ...
}
创建 hello.js文件:
- //hello.js
- function Hello() {
- var name;
- this.setName = function(thyName) {
- name = thyName;
- };
- this.sayHello = function() {
- console.log('Hello ' + name);
- };
- };
- module.exports = Hello;
创建main.js文件:
- //main.js
- var Hello = require('./hello');
- hello = new Hello();
- hello.setName('BYVoid');
- hello.sayHello();
觉得有用可以点赞或收藏!