NodeJS导入一个模块

模块文件other.js:

module.exports = {
    fun1 : function() {
        console.log("啊啊啊");
    },
    str1 : '666'
};

导进来并使用:

var other = require("./other");
other.fun1();
console.log(other.str1);

运行:

E:\WorkSpace\JavaScriptStudy>node main.js
啊啊啊
666

posted @ 2019-04-10 17:49  LauZyHou  阅读(2856)  评论(0编辑  收藏  举报