我有一个Electron应用程序,并且需要类似module.exports
的功能。但这似乎不受支持。
如果我尝试
index.js
const helper = require('./helper')
let importantVar = helper.getImportantVar
helper.js
function getImportantVar() {
let foo = 'bar'
return foo
}
module.exports = {
getImportantVar: getImportantVar
}
我明白了
未捕获的错误:找不到模块“助手”
任何想法我都可以继续进行以获得相同的功能。
使用电子:6.0.12