创建模块
新建一个文件, 比如我在src文件夹里创建一个greeting.js
const hello = () => {
console.log("hello~~!~");
}
module.exports.hello = hello
注意最后一句导出模块里的内容, 要用module.exports.xxx= xxx
调用模块
我要在index.js里面调用刚刚创建的greeting模块
const greeting = require('./src/greeting')
greeting.hello()
输出hello~~!~