NodeJS导入一个模块
模块文件other.js:
module.exports = { fun1 : function() { console.log("啊啊啊"); }, str1 : '666' };
导进来并使用:
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。var other = require("./other"); other.fun1(); console.log(other.str1);
运行:
E:\WorkSpace\JavaScriptStudy>node main.js
啊啊啊
666
更多精彩

